html {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scrollbar-gutter: stable;
}

/* Cross-OS scrollbar normalization: Windows shows chunky always-on scrollbars
   that eat layout width, macOS uses zero-width overlay bars. Pin a thin,
   consistent scrollbar on both so widths/gutters match. */
* {
    scrollbar-width: thin;
    scrollbar-color: #c4c4c4 transparent;
}
*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
*::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 5px;
}
*::-webkit-scrollbar-track {
    background: transparent;
}

