/* Custom table header style */
.table thead th {
    background-color: #4e73df; /* SB Admin 2 Primary Color */
    color: #ffffff;
    border-color: #4e73df;
}

/* Custom striped rows for better contrast - using !important */
.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: whitesmoke !important; /* A light gray, forced with !important */
}

/* Mobile responsive title column for seller_photocards */
@media (max-width: 768px) {
    #seller_photocards-section table thead th:first-child,
    #seller_photocards-section table tbody td:first-child {
        width: 40% !important;
        min-width: 200px !important;
    }

    #seller_photocards-section table thead th:not(:first-child),
    #seller_photocards-section table tbody td:not(:first-child) {
        width: auto !important;
        min-width: 80px !important;
    }

    /* Make table scrollable on mobile */
    #seller_photocards-section .table-responsive {
        overflow-x: auto;
    }
}