/* ================= IOE HELPER CUSTOM STYLES ================= */

body {
    background-color: #f8f9ff;
    color: #0b1c30;
    font-family: 'Be Vietnam Pro', 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

html.dark body {
    background-color: #090d16;
    color: #f3f4f6;
}

.card-shadow {
    box-shadow: 0px 4px 25px rgba(15, 23, 42, 0.06);
}

html.dark .card-shadow {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(16, 185, 129, 0.05);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.tab-btn {
    color: #4b5563;
    background-color: transparent;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

html.dark .tab-btn {
    color: #9ca3af;
}

.tab-btn:hover {
    background-color: #f3f4f6;
    color: #006948;
}

html.dark .tab-btn:hover {
    background-color: #192233;
    color: #34d399;
}

.tab-btn.active {
    background-color: #dff9f0 !important;
    color: #006948 !important;
    font-weight: 700 !important;
}

html.dark .tab-btn.active {
    background-color: #10b981 !important;
    color: #042f2e !important;
    font-weight: 700 !important;
}

.filter-btn.active {
    background-color: #006948;
    color: #ffffff;
    border-color: #006948;
}

html.dark .filter-btn.active {
    background-color: #10b981;
    color: #042f2e;
    border-color: #34d399;
    font-weight: 700;
}

/* Custom Scrollbar cho Sidebar & Modal */
#sidebar::-webkit-scrollbar,
.overflow-y-auto::-webkit-scrollbar {
    width: 6px;
}

#sidebar::-webkit-scrollbar-track,
.overflow-y-auto::-webkit-scrollbar-track {
    background: transparent;
}

#sidebar::-webkit-scrollbar-thumb,
.overflow-y-auto::-webkit-scrollbar-thumb {
    background: rgba(156, 163, 175, 0.4);
    border-radius: 9999px;
}

html.dark #sidebar::-webkit-scrollbar-thumb,
html.dark .overflow-y-auto::-webkit-scrollbar-thumb {
    background: rgba(75, 85, 99, 0.5);
}

