::-webkit-scrollbar {
    width: 16px; 
    background-color: black;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    border: none;
}

::-webkit-scrollbar-thumb {
    background-color: #ffd000;
    border-radius: 20px;

    border: 4px solid transparent;
    background-clip: content-box;

    transition: background-color 0.5s ease-in-out !important;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #ffd000b6;
    border: 4px solid transparent;
    background-clip: content-box;
}