/* =======================================================
   ProperApp Core — Base
   Global reset + typography + theme application
   ======================================================= */

/* Box sizing reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Root defaults */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;

    background: var(--pa-color-background);
}

/* Focus outline (accessible default) */
:focus-visible {
    outline: 2px solid var(--pa-color-primary);
    outline-offset: 2px;
}

