*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-page: #f7f5f0;
  --bg-surface: #ffffff;
  --bg-subtle: #f0ede6;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-muted: #aaaaaa;
  --border: #e8e4dc;
  --accent: #c8b89a;
  --accent-dark: #a89880;

  /* compat aliases */
  --bg: #f7f5f0;
  --surface: #ffffff;
  --surface-2: #f0ede6;
  --text: #1a1a1a;
  --ibk-identitet: #6b5bb5;
  --ibk-beteende: #b5640a;
  --ibk-kommunikation: #0a7a9b;
}

body {
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  letter-spacing: -0.01em;
}

button {
  cursor: pointer;
  font-family: 'Inter', -apple-system, sans-serif;
}

input, textarea, select {
  font-family: 'Inter', -apple-system, sans-serif;
}

#loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: var(--text-muted);
  font-size: 14px;
}
