/* Filament table row overrides */

/* Holiday row styling */
.fi-ta-row.holiday-row,
.fi-ta-row.holiday-row > td {
    background-color: rgba(255, 237, 213, 0.5) !important;
    border-left: 4px solid rgb(59, 130, 246) !important;
}

.dark .fi-ta-row.holiday-row,
.dark .fi-ta-row.holiday-row > td {
    background-color: rgba(154, 52, 18, 0.4) !important;
    border-left: 4px solid rgb(59, 130, 246) !important;
}

/* Striped rows (light mode): blue tint */
.fi-ta-row.fi-striped,
.fi-ta-row.fi-striped > td {
    background-color: rgba(59, 130, 246, 0.12) !important;
}

/* Striped rows (dark mode): keep subtle contrast */
.dark .fi-ta-row.fi-striped,
.dark .fi-ta-row.fi-striped > td {
    background-color: rgba(255, 255, 255, 0.06) !important;
}

