/* Ultra-thin auto-hide scrollbars for all pages */
* {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

*:hover {
    scrollbar-color: rgba(241, 86, 0, 0.3) transparent;
}

*::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

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

*::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 2px;
}

*:hover::-webkit-scrollbar-thumb {
    background: rgba(241, 86, 0, 0.3);
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(241, 86, 0, 0.6);
}
