:root {
  --bg: #eef3f7;
  --panel: #ffffff;
  --panel-soft: #f6f9fc;
  --panel-tint: #edf8f6;
  --ink: #111827;
  --muted: #64748b;
  --line: #d8e1ec;
  --brand: #0f8f7e;
  --brand-dark: #0b6d63;
  --blue: #2563eb;
  --red: #d14343;
  --amber: #b7791f;
  --green: #0f8f55;
  --sidebar: #0f1724;
  --sidebar-soft: #182438;
  --shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
  --shadow-soft: 0 7px 18px rgba(15, 23, 42, 0.055);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 88px 1fr;
  background:
    radial-gradient(circle at 18% -12%, rgba(20, 184, 166, 0.11), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(243, 246, 250, 0) 260px),
    var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}
