/* ScoutLink Design System Variables */
:root {
  /* Background */
  --bg: #0d1117;
  --bg-secondary: #161b22;
  --bg-tertiary: #1c2128;

  /* Cards */
  --card: #161b22;
  --card-alt: #1c2128;

  /* Accent */
  --accent: #1d9e75;
  --accent-hover: #17856a;

  /* Text */
  --text: #ffffff;
  --text-secondary: #8b949e;
  --text-muted: #6e7681;

  /* Border */
  --border: #30363d;
  --border-accent: rgba(29,158,117,0.25);

  /* Status */
  --success: #1d9e75;
  --warning: #FFC107;
  --error: #f85149;
  --info: #17a2b8;

  /* Legacy aliases (for backward compat) */
  --green: #1d9e75;
  --green2: #17856a;
  --bg2: #161b22;
  --card2: #1c2128;
  --text2: #8b949e;
  --text3: #8b949e;
  --border2: rgba(29,158,117,0.25);

  /* Sizing */
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.2s ease;
}

body.theme-light {
  --bg: #f6f8fb;
  --bg-secondary: #ffffff;
  --bg-tertiary: #eef3f7;
  --card: #ffffff;
  --card-alt: #f1f5f9;
  --text: #102033;
  --text-secondary: #52616f;
  --text-muted: #6b7a88;
  --border: #d7e0ea;
  --bg2: #ffffff;
  --card2: #f1f5f9;
  --text2: #52616f;
  --text3: #6b7a88;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}
