/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

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

.dark ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

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

.dark ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Sidebar specific scrollbar - always dark */
aside ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

aside ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
}

aside ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Firefox support */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.dark * {
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

aside {
    scrollbar-color: rgba(255, 255, 255, 0.1) rgba(0, 0, 0, 0.2) !important;
}
