/* Apply scroll style to all elements with overflow */
* {
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: rgb(0 0 0 / 80%) rgb(255 255 255 / 10%);
    /* Firefox */

    /* Webkit browsers */
    &::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    &::-webkit-scrollbar-track {
        background-color: rgb(255 255 255 / 10%);
        border-radius: 10px;
    }

    &::-webkit-scrollbar-thumb {
        background-color: rgb(0 0 0 / 80%);
        border-radius: 10px;
    }
}