body { font-family: 'Prompt', sans-serif; }

/* Active Sidebar Tab Style */
.tab-active {
    background-color: #2563eb !important; /* bg-blue-600 */
    color: #ffffff !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.25), 0 2px 4px -2px rgba(37, 99, 235, 0.25);
}

.tab-active i {
    color: #ffffff !important;
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Custom Scrollbar for Tables */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Sidebar Scrollbar Specifically */
aside ::-webkit-scrollbar-track {
    background: #0f172a;
}
aside ::-webkit-scrollbar-thumb {
    background: #334155;
}
aside ::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

@media print {
    aside, header, footer, button {
        display: none !important;
    }
    main {
        max-width: 100% !important;
        padding: 0 !important;
    }
}