:root {
  color-scheme: dark;
  --bg: #111214;
  --panel: #404040;
  --panel-strong: #27272b;
  --panel-border: #5c5c5c;
  --text: #f2f2f4;
  --muted: #9ca3af;
  --accent: #1a73e8;
  --accent-soft: rgba(26, 115, 232, 0.14);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
}

body {
  font-family: 'Ubuntu', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: #2e2e2e;
  color: var(--text);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
