#tabela-container {
    overflow-x: auto; /* Pozwala na poziome przewijanie */
    -webkit-overflow-scrolling: touch;
    width: 100%; /* Kontener zajmuje całą szerokość rodzica (#main-full) */
    max-width: 100%; /* Zapobiega wyjściu poza rodzica */
    margin: 0 auto; /* Wyśrodkowanie (jeśli potrzebne) */
    min-height: 210px;
}

table {
    border-collapse: collapse;
    min-width: 1200px; /* Utrzymuje minimalną szerokość tabeli */
    border-radius: 24px;
    border-spacing: 0;
    border-collapse: separate;
    margin-left: auto;
    margin-right: auto;
}

th, td {
    padding: 8px;
    text-align: left;
    vertical-align: top;
    cursor: pointer;
    font-size: 12px;
}

th {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #f1f3f4;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
}

td {
    cursor: default;
    border-bottom: 2px solid #f1f3f4;
    font-weight: 500;
}

th.sort-asc::after {
    content: " ▲";
}

th.sort-desc::after {
    content: " ▼";
}

td p {
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin: 0;
    display: inline-block; /* Dodano, aby dopasować szerokość do zawartości */
    width: auto; /* Opcjonalnie, aby upewnić się, że szerokość jest automatyczna */
    color: inherit;
    
}

td.numeric {
    text-align: right;
    white-space: nowrap;
}

td.img {
    width: 40px;
    height: 40px;
}

#offers-table.hide-blueprints .blueprint-column {
    display: none;
}

#progress-indicator {
    margin-bottom: 15px;
    font-weight: 700;
}

.settings-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0;
    gap: 10px;
    row-gap: 20px;
}