* { box-sizing: border-box; }

html, body { height: 100%; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Markering */
::selection {
    background: rgba(0, 122, 255, 0.20);
    color: var(--text);
}

/* Overskrifter */
h1, h2, h3 { margin: 0 0 12px; letter-spacing: -0.3px; }
h1 { font-size: var(--font-2xl); font-weight: 700; letter-spacing: -0.5px; }
h2 { font-size: var(--font-xl); font-weight: 700; }
h3 { font-size: var(--font-lg); font-weight: 600; }

a {
    color: var(--primary);
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}

/* Fjern tap-highlight globalt */
* {
    -webkit-tap-highlight-color: transparent;
}
