.scroll-container {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgb(161 161 170) transparent;
}

.scroll-container::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.scroll-container::-webkit-scrollbar-thumb {
    background-color: rgb(161 161 170);
    border-radius: 4px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background-color: rgb(113 113 122);
}