/* For WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 10px; 
}

::-webkit-scrollbar-track {
    background: #242729; 
    border-radius: 5px; 
}

::-webkit-scrollbar-thumb {
    background: #44484b; 
    border-radius: 5px; 
    border: 2px solid #242729; 
}

::-webkit-scrollbar-thumb:hover {
    background: #5b5f61; 
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #44484b #242729; 
}