/* For the whole scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

/* For the scrollbar track (background) */
::-webkit-scrollbar-track {
    /* background-color: var(--color-white); */
    border-radius: 4px;
}

/* For the scrollbar thumb (the part that you can drag) */
::-webkit-scrollbar-thumb {
    background-color: var(--primary-blu-color);
    border-radius: 4px;
}

/* For the scrollbar thumb when hovering */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-blu-color)
}

html {
    /* font-size: 125%; */
    scrollbar-color: var(--primary-blu-color) var(--primary-blu-color);
    /* scrollbar-width: thin; */
    /* font-kerning: none; */
}