/* ============================================
   MikeServer Infrastructure Dashboard
   Design Tokens — Terminal Theme
   ============================================
   Black background, green text. Like a terminal.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap');

:root {
  /* === COLORS === */
  --green: #00ff00;
  --green-dim: #00aa00;
  --green-muted: #005500;
  --yellow: #ffff00;
  --red: #ff0000;

  /* === BACKGROUNDS === */
  --bg: #000000;
  --bg-card: #0a0a0a;
  --bg-hover: #111111;

  /* === TEXT === */
  --text: #00ff00;
  --text-dim: #00aa00;
  --text-muted: #005500;

  /* === BORDERS === */
  --border: #005500;
  --border-bright: #00aa00;

  /* === TYPOGRAPHY === */
  --font: 'JetBrains Mono', monospace;

  /* === SPACING === */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;

  /* === LAYOUT === */
  --max-width: 1400px;
}

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

html {
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 0.8rem;
  line-height: 1.5;
}
