/* --- STYLIZACJA TABELI ULTRA-WIDE --- */

.custom-minimal-table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
    width: 100% !important;
    margin-bottom: 0 !important;
}

/* Nagłówki - bardzo czyste, z grubą czarną linią na dole */
.custom-minimal-table thead th {
    background-color: transparent !important;
    border-top: none !important;
    border-bottom: 2px solid #000 !important; /* Charakterystyczny czarny dół */
    color: #000 !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 10px !important;
}

/* Wiersze - tylko cienka linia pozioma */
.custom-minimal-table tbody td {
    padding: 20px 10px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    vertical-align: middle !important;
    font-size: 0.95rem !important;
    color: #666;
}

/* Hover dla wierszy - subtelne podkreślenie */
.custom-minimal-table tbody tr:hover {
    background-color: #fcfcfc !important;
}

/* Styl dla komunikatów "brak danych" */
.custom-minimal-table tbody tr:last-child td {
    border-bottom: none !important;
}