/**
 * Light Theme - SIS Simulation GUI
 * CSS custom properties for light theme
 */

body.theme-light {
  /* Background colors */
  --bg-primary: #f5f6fa;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;

  /* Text colors */
  --text-primary: #2d3436;
  --text-secondary: #636e72;

  /* Accent color */
  --accent: #0984e3;

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

  /* Border color */
  --border-color: #dfe6e9;

  /* Additional colors for UI elements */
  --highlight: rgba(9, 132, 227, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.1);
}
