/* Custom Scrollbar for WebKit Browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}

/* Custom Scrollbar for Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #d6dee1 transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}

/* General fallback for unsupported browsers */
html {
    scrollbar-color: #d6dee1 transparent; /* Firefox */
    scrollbar-width: thin; /* Firefox */
}

/* Specific scroll container example */
.scroll-container {
    overflow-y: scroll;
    scrollbar-color: #d6dee1 transparent; /* Firefox */
    scrollbar-width: thin; /* Firefox */
}

/* Ensure styles apply correctly */
.scroll-container::-webkit-scrollbar {
    width: 20px;
}

.scroll-container::-webkit-scrollbar-track {
    background-color: transparent;
}

.scroll-container::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}
