::-webkit-scrollbar {
    width: 12px; 
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: rgba(160, 160, 160, 0.4); 
}
/* Firefox */
.scrollable {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent; 
}

