/*
 * Widescreen readability experiment
 *
 * Large desktop chrome uses 0.738 at 1280-1919px. Raising that value by 10%
 * at 1920px+ reproduces the physical UI size seen at roughly 110% browser
 * zoom while leaving the map canvas at its native scale.
 *
 * Rollback: apply WIDESCREEN_SCALING_ROLLBACK.patch from the repository root.
 */
@media (min-width: 1920px) {
    :root {
        --ui-scale: 0.812;
    }
}
