/**
 * Dark Theme - SIS Simulation GUI
 * CSS custom properties for dark theme
 */

body.theme-dark {
  /* Background colors */
  --bg-primary: #1a1a2e;
  --bg-secondary: #16213e;
  --bg-card: #0f3460;

  /* Text colors */
  --text-primary: #e0e0e0;
  --text-secondary: #a0a0a0;

  /* Accent color */
  --accent: #e94560;

  /* Status colors */
  --success: #00b894;
  --error: #e74c3c;
  --warning: #f39c12;
  --info: #3498db;

  /* Border color */
  --border-color: #2a3f5f;

  /* Additional colors for UI elements */
  --highlight: rgba(233, 69, 96, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.3);
}
