:root {
  --bg: #f1f4f6;
  --panel: #ffffff;
  --ink: #182129;
  --muted: #566573;
  --line: #ccd5db;
  --accent: #0c8a62;
  --danger: #c7332f;
  --safe: #1f7fbf;
  --header-h: 56px;
  --footer-h: 32px;
  --inspector-w: 280px;
  --radius: 8px;
  --font-main: "Segoe UI", "Trebuchet MS", sans-serif;
  --font-mono: "Consolas", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 60%);
}

button,
select,
input {
  font: inherit;
}