body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f1f5f9;
    color: #1e293b;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.filter-btn-active {
    background-color: #3b82f6 !important;
    color: white !important;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Custom Checkbox for Multi-select */
.checkbox-custom:checked + label {
    background-color: #3b82f6;
    color: white;
}

/* Transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Table overrides for light theme */
thead tr {
    background-color: #f8fafc !important;
}

th {
    color: #64748b !important;
}

td {
    color: #334155 !important;
    border-color: #f1f5f9 !important;
}

tr:hover {
    background-color: #f8fafc !important;
}

/* Flatpickr Today Highlight */
.flatpickr-day.today {
    border-color: #3b82f6 !important;
    background: #eff6ff !important;
    color: #1d4ed8 !important;
    font-weight: 700 !important;
}

.flatpickr-day.today:hover {
    background: #dbeafe !important;
}
