/* Minimal CSS-only scrollbar styling (replaces SimpleBar) */

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .25) transparent;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .25);
    border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, .45);
}

*::-webkit-scrollbar-corner {
    background: transparent;
}
