/* Global scrollbar styles for all elements */
/* For Webkit browsers (Chrome, Safari, newer versions of Opera) */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #fde6d2 !important; /* primary-muted color */
    border-radius: 100px;
    -webkit-border-radius: 100px;
    box-sizing: content-box;
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: #F27608; /* primary color */
    border-radius: 100px;
    -webkit-border-radius: 100px;
}

/* Gray scrollbar styles for filter sections */
.scrollbar-gray::-webkit-scrollbar-track {
    background: #f0f0f0 !important; /* light gray */
    border-radius: 100px;
    -webkit-border-radius: 100px;
    box-sizing: content-box;
    width: 5px;
}

.scrollbar-gray::-webkit-scrollbar-thumb {
    background: #888888; /* gray */
    border-radius: 100px;
    -webkit-border-radius: 100px;
}