/*
 * SocioParty UI scale — equivalent to ~125% browser zoom on the legacy 11px base.
 * Keeps layout proportions without asking users to change browser settings.
 */
html {
    zoom: 1.25;
}

@supports not (zoom: 1.25) {
    body {
        font-size: 14px;
        line-height: 1.35;
    }
}
