/* For Webkit browsers like Chrome, Safari, and newer versions of Edge */
::-webkit-scrollbar {
    width: 5px; /* Width of the vertical scrollbar */
}

::-webkit-scrollbar-track {
    background: none; /* Color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: #777; /* Color of the scrollbar thumb */
    border-radius: 6px; /* Rounded corners of the scrollbar thumb */
    transition: background-color 600ms ease-out;
}

::-webkit-scrollbar-thumb:hover {
    background: #999; /* Color of the scrollbar thumb on hover */
}