/* Custom CSS for the scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 5px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(132, 132, 132, 0.2);
    border-radius: 8px;
    padding-left: 2px;
}


/* Custom CSS to hide the scrollbar */
.scrollbar-hidden::-webkit-scrollbar {
    width: 0px;
}