@media (min-width: 768px) {
    ::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }

    ::-webkit-scrollbar-track {
        background-color: transparent;
    }

    ::-webkit-scrollbar-thumb {
        background-color: transparent;
        border-radius: 10px;
    }

    *:hover::-webkit-scrollbar-track,
    *:focus::-webkit-scrollbar-track,
    *:focus-within::-webkit-scrollbar-track {
        background-color: var(--bs-body-bg);
    }

    *:hover::-webkit-scrollbar-thumb,
    *:focus::-webkit-scrollbar-thumb,
    *:focus-within::-webkit-scrollbar-thumb {
        background-color: var(--bs-body-color);
    }

    *:hover::-webkit-scrollbar-thumb:hover {
        background-color: var(--bs-primary);
    }
}