/* Webkit */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {
    background: #f4f4f4;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Firefox */
@supports (scrollbar-width: thin) {
    * {
        scrollbar-width: thin; /* Тонкий скролл */
        scrollbar-color: #888 #f4f4f4; /* Цвет ползунка и фона */
    }
}