/* =============================================
   Procurement Table — Frontend Styles
   Темна тема, як на референсі
   ============================================= */

.pt-wrap {
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin: 20px 0;
}

/* ----- ТАБИ ----- */
.pt-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 14px 16px;
    background: #111;
    border-bottom: 1px solid #2a2a2a;
}

.pt-tab {
    display: inline-block;
    padding: 7px 16px;
    border: none;
    border-radius: 4px;
    background: #2a2a2a;
    color: #bbb;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.pt-tab:hover {
    background: #3a3a3a;
    color: #fff;
}

.pt-tab--active {
    background: #e85d00;
    color: #fff;
}

/* ----- ТАБЛИЦЯ ----- */
.pt-table-wrap {
    overflow-x: auto;
}

.pt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.pt-table thead tr {
    background: #222;
}

.pt-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    border-bottom: 1px solid #333;
    white-space: nowrap;
}

.pt-table tbody tr {
    border-bottom: 1px solid #242424;
    transition: background 0.1s;
}

.pt-table tbody tr:hover {
    background: #242424;
}

.pt-table tbody tr.pt-hidden {
    display: none;
}

.pt-table tbody td {
    padding: 12px 16px;
    color: #d0d0d0;
    vertical-align: middle;
}

/* Колонки */
.pt-col-name  { width: 55%; }
.pt-col-qty   { width: 22%; text-align: right; }
.pt-col-total { width: 23%; text-align: right; font-weight: 600; color: #fff; }

.pt-table thead th.pt-col-qty,
.pt-table thead th.pt-col-total {
    text-align: right;
}

/* ----- ПОРОЖНІЙ СТАН ----- */
.pt-empty {
    padding: 20px;
    color: #888;
    text-align: center;
}

/* ----- АДАПТИВ ----- */
@media (max-width: 600px) {
    .pt-tab {
        padding: 6px 10px;
        font-size: 11px;
    }

    .pt-table thead th,
    .pt-table tbody td {
        padding: 10px 10px;
        font-size: 12px;
    }
}
