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

:root {
  --bg: #06060a;
  --sidebar: #0c0c13;
  --card: #101019;
  --accent: #7c6afc;
  --accent2: #a78bfa;
  --text: #eaeaf4;
  --muted: #56566e;
  --green: #34d399;
  --red: #f43f5e;
  --orange: #f59e0b;
  --blue: #38bdf8;
  --border: #1a1a2a;
}

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: #f0f1f5;
  --sidebar: #ffffff;
  --card: #ffffff;
  --text: #0c0c13;
  --muted: #56566e;
  --border: #e2e3eb;
}

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;
}
