/* Custom scrollbar styling with theme colors */
.fi-sidebar-nav {
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--primary-400)) transparent;
}

.fi-sidebar-nav::-webkit-scrollbar {
    width: 6px;
}

.fi-sidebar-nav::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.fi-sidebar-nav::-webkit-scrollbar-thumb {
    background-color: rgb(var(--primary-400));
    border-radius: 3px;
}

.fi-sidebar-nav::-webkit-scrollbar-thumb:hover {
    background-color: rgb(var(--primary-500));
}

/* Dark mode scrollbar */
.dark .fi-sidebar-nav {
    scrollbar-color: rgb(var(--primary-500)) transparent;
}

.dark .fi-sidebar-nav::-webkit-scrollbar-thumb {
    background-color: rgb(var(--primary-500));
}

.dark .fi-sidebar-nav::-webkit-scrollbar-thumb:hover {
    background-color: rgb(var(--primary-400));
}
