html {
    &::-webkit-scrollbar {
        width: 8px; /* Width of the scrollbar */
        background-color: rgba(255, 255, 255, 0);
    }

    &::-webkit-scrollbar-track {
        background: rgba(241, 241, 241, 0); /* Background of the scrollbar track */
    }

    &::-webkit-scrollbar-thumb {
        background: #888; /* Color of the scrollbar thumb */
        border-radius: 6px; /* Rounded corners of the scrollbar thumb */
    }

    &::-webkit-scrollbar-thumb:hover {
        background: #555; /* Color of the scrollbar thumb on hover */
    }

    &::-webkit-scrollbar-button {
        display: none;
    }
}