@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body { 
    font-family: 'Inter', sans-serif; 
}

.sidebar-link.active {
    background-color: #f1f5f9;
    color: #0f172a;
    border-right: 4px solid #3b82f6;
}

.submenu-item.active {
    color: #2563eb;
    font-weight: 800;
}

.submenu-container {
    display: none;
    background-color: #fdfdfd;
}

.group:hover .submenu-container {
    display: block;
}

.no-transition { 
    transition: none !important; 
}

nav::-webkit-scrollbar { 
    width: 4px; 
}

nav::-webkit-scrollbar-track { 
    background: transparent; 
}

nav::-webkit-scrollbar-thumb { 
    background: #e2e8f0; 
    border-radius: 10px; 
}

/* Custom Scrollbar for Tables */
.custom-scrollbar::-webkit-scrollbar { 
    height: 6px; 
    width: 6px; 
}

.custom-scrollbar::-webkit-scrollbar-track { 
    background: #f1f5f9; 
}

.custom-scrollbar::-webkit-scrollbar-thumb { 
    background: #cbd5e1; 
    border-radius: 4px; 
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover { 
    background: #94a3b8; 
}