/* Custom scrollbar styling for dark theme */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #555; /* Gray scrollbar thumb */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #777; /* Lighter gray on hover */
}

/* For Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #555 transparent; /* thumb color, track color */
} 