/* Shared scrollbar — dark navy track, translucent white thumb.
   Extracted from main_free.css for pages that don't load the full Clarity stylesheet. */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #2c3e50;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.55);
}

::-webkit-scrollbar-thumb:active {
    background: #CA65A7;
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.35) #2c3e50;
}
