/* Custom Scrollbar Styles */

/* Chrome, Safari, Edge */
::-webkit-scrollbar {
    width: 6px; /* Scrollbar width */
}

::-webkit-scrollbar-track {
    background: #FFFFFF20; /* Track color */
}

::-webkit-scrollbar-thumb { 
    background: #34ABFF; /* Thumb color */
    border-radius: 10px; /* Thumb border radius */
}

::-webkit-scrollbar-thumb:hover { 
    background: #71AE00; /* Thumb color on hover */
}

/* Firefox specific */
@-moz-document url-prefix() {
    * {
        scrollbar-width: thin;
        scrollbar-color: #34ABFF #FFFFFF20;
    }
}
