/* Lab app shell — single source for light chrome (overrides styles.css body when loaded after) */
:root {
  --bg: #ffffff;
  --surface: #f8f8f8;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.18);
  --text: #0a0a0a;
  --muted: #555555;
  --accent: #c69c2a;
  --accent-light: #fdf6dc;
  --teal: #c69c2a;
  --teal-light: #fdf6dc;
  --dock-bg: #0a0a0a;
  --dock-muted: rgba(255, 255, 255, 0.45);
  --dock-active: #c69c2a;
  --ff: "Inter", -apple-system, sans-serif;
}

html,
body {
  height: 100%;
  overflow: hidden;
  background: var(--bg) !important;
  color: var(--text) !important;
  font-family: var(--ff) !important;
  -webkit-font-smoothing: antialiased;
}
