/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

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

::-webkit-scrollbar-thumb {
    background-color: rgba(156, 163, 175, 0.15);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(156, 163, 175, 0.35);
}

/* Dark mode scrollbar */
.dark ::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
}

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

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(156, 163, 175, 0.15) transparent;
}

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