/* ── Zajednički font stack — koristi se u svim standalone stranicama ── */
:root {
  --font:      'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Consolas', 'Cascadia Code', 'JetBrains Mono', 'Courier New', monospace;
}

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

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input, textarea, select, button {
  font-family: var(--font);
  font-size: inherit;
}

code, pre, .mono, [class*="font-mono"] {
  font-family: var(--font-mono);
}
