/* ===== SCROLLBAR MINIMALISTE ===== */

/* Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .15);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, .3);
}

/* Light theme */
html.light::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .15);
}

html.light::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, .3);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .15) transparent;
}

html.light {
    scrollbar-color: rgba(0, 0, 0, .15) transparent;
}
