:root {
  color-scheme: light;
  --action: #2a7d69;
  --action-hover: #226858;
  --border: rgba(32, 46, 52, 0.14);
  --border-strong: rgba(32, 46, 52, 0.26);
  --danger: #9f3037;
  --ink: #162225;
  --input: #fbfdfb;
  --muted: #647174;
  --sidebar: #17393d;
  --surface: #ffffff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #eef3ef;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(42, 125, 105, 0.08), transparent 280px),
    #eef3ef;
}
