/**
 * MBA ASAP Exam System - Styles
 * =============================
 */

:root {
  --primary: #000000;
  --accent: #ccff00;
  --error: #ff4444;
  --success: #44ff44;
  --text: #ffffff;
  --text-muted: #888888;
  --bg: #0a0a0a;
  --bg-card: #111111;
  --border: #222222;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* TODO: Add component styles */

