/* Минималистичный скроллбар */
html {
    scrollbar-width: thin;
    scrollbar-color: #aeb5b1 transparent;
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #aeb5b1;
    border: 2px solid transparent;
    border-radius: 6px;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #8f9993;
}

::-webkit-scrollbar-corner {
    background: transparent;
}
