:root { 
    --i9blue: #002855; 
    --i9red: #E31837; 
    --i9gold: #FDB827; 
}

::-webkit-scrollbar { 
    width: 6px; 
    height: 6px; 
}
::-webkit-scrollbar-track { 
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb { 
    background: #cbd5e1; 
    border-radius: 4px; 
}
::-webkit-scrollbar-thumb:hover { 
    background: #94a3b8; 
}

/* Bulk Edit Slide Pane */
.slide-pane { 
    transform: translateX(100%); 
    transition: transform 0.3s ease-in-out; 
}
.slide-pane.open { 
    transform: translateX(0); 
}

/* Responsive Mobile Table-to-Card Transformation */
@media (max-width: 640px) {
    .responsive-card-table thead {
        display: none;
    }
    .responsive-card-table tbody tr {
        display: flex;
        flex-direction: column;
        background-color: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 0.75rem;
        margin-bottom: 0.75rem;
        padding: 0.75rem;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }
    .responsive-card-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.375rem 0;
        border: none !important;
    }
    .responsive-card-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #6b7280;
        font-size: 0.65rem;
        text-transform: uppercase;
        margin-right: 0.5rem;
    }
}