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

*:hover {
    scrollbar-color: rgba(4, 120, 87, 0.35) transparent;
}

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

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

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

*:hover::-webkit-scrollbar-thumb {
    background: rgba(4, 120, 87, 0.35);
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(4, 120, 87, 0.6);
}
