 /* Custom scrollbar styles for a specific element with ID 'custom-scroll' */
 .custom-scroll::-webkit-scrollbar {
    width: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}


/* Firefox */
.custom-scroll {
    scrollbar-color:  white;
    scrollbar-width: thin;
}