/* ============================================================
   LRV Sachsen-Anhalt – Design Tokens & Global Reset
   ============================================================ */

/* Google Fonts — lädt wenn Internet verfügbar, sonst Systemschriften als Fallback */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,400&display=swap');

:root {
  /* Colours */
  --bg:         #080b12;
  --surface:    #0f1520;
  --surface2:   #141c2e;
  --surface3:   #1a2340;
  --border:     #1e2c46;
  --border2:    #263350;

  --accent-red:  #d42020;
  --accent-blue: #1a3aff;
  --accent-gold: #c8a84b;

  --text:        #d8e4f0;
  --text-muted:  #5a6e90;
  --text-dim:    #8a9bbf;

  /* Sizes */
  --topbar-h:   70px;
  --sidebar-w:  210px;
  --right-w:    250px;
  --radius:     6px;
}

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

html, body {
  min-height: 100%;
  height: 100%;
  overflow: auto;
  background: var(--bg);
  color: var(--text);
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
