/* Track */
::-webkit-scrollbar {
    width: 12px;
    /* Width of the scrollbar */
    padding-right: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #B02BFD;
    /* Color of the scrollbar thumb */
    border-radius: 5px;
    /* Rounded corners for the thumb */
}

/* Track on hover */
::-webkit-scrollbar-thumb:hover {
    background: #5D0094;
    /* Change color on hover */
}


@media screen and (max-width: 768px) {



    ::-webkit-scrollbar {
        width: unset;
        padding-right: unset;
    }

    ::-webkit-scrollbar-thumb {
        background: unset;
        border-radius: unset;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: unset;
    }


}