/* Global scrollbar — warm neutrals (pairs with public/css/theme.css) */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(105, 95, 88, 0.85) rgba(45, 40, 36, 0.45);
}
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
*::-webkit-scrollbar-track {
    background: rgba(45, 40, 36, 0.45);
}
*::-webkit-scrollbar-thumb {
    background: rgba(105, 95, 88, 0.85);
    border-radius: 4px;
}
*::-webkit-scrollbar-thumb:hover {
    background: rgba(120, 108, 98, 0.92);
}
