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

:root {
  --bg: #0d0d1a;
  --sidebar: #12122b;
  --card: #1a1a35;
  --accent: #7c3aed;
  --accent2: #6366f1;
  --text: #e2e8f0;
  --muted: #64748b;
  --green: #22c55e;
  --red: #ef4444;
  --orange: #f97316;
  --blue: #3b82f6;
  --border: #1e1e40;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  font-size: 14px;
}

body.light-theme {
  --bg: #f0f2f5;
  --sidebar: #ffffff;
  --card: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e5e7eb;
}

body.light-theme .service-name,
body.light-theme .topbar-title,
body.light-theme .sidebar-logo h1,
body.light-theme .section-title,
body.light-theme .settings-card-header h3,
body.light-theme .kanban-col-title {
  color: #1a1a2e;
}

body.light-theme .output-body {
  color: #374151;
}

body.light-theme #sysbar {
  background: #ffffff;
  border-top-color: #e5e7eb;
}

body.light-theme .sysbar-value,
body.light-theme .stat-value,
body.light-theme .stat-cpu,
body.light-theme .stat-ram,
body.light-theme .settings-value {
  color: #1a1a2e;
}
