:root{
  --bg:#f3f0e7;
  --surface:#fffdf7;
  --surface-2:#f8f5ec;
  --ink:#193027;
  --muted:#6a776f;
  --line:#ded7c6;
  --line-strong:#c9bea8;
  --green-900:#0e3a2d;
  --green-800:#164936;
  --green-700:#1f6449;
  --green-600:#2e7a5a;
  --green-100:#dceee3;
  --accent:#d69b41;
  --danger:#a8443a;
  --shadow:0 16px 40px rgba(24,47,37,.10);
  --radius:18px;
  --radius-sm:12px;
  --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--ink);font-family:var(--font);font-size:14px;line-height:1.45}
button,input,select{font:inherit}
button{cursor:pointer}
a{color:inherit;text-decoration:none}
strong{font-weight:850}
.small{font-size:12px;padding:7px 10px;border-radius:10px}
.primary,.ghost{border:1px solid transparent;border-radius:12px;font-weight:800;display:inline-flex;align-items:center;gap:8px;justify-content:center;min-height:38px;padding:9px 14px;transition:.18s ease}
.primary{background:var(--green-800);color:white;box-shadow:0 8px 18px rgba(22,73,54,.18)}
.primary:hover{background:var(--green-700)}
.ghost{background:#fffaf0;color:var(--green-900);border-color:var(--line)}
.ghost:hover{border-color:var(--green-600);background:#f6f1e6}
.no-data{color:var(--muted);background:var(--surface-2);border:1px dashed var(--line-strong);border-radius:14px;padding:18px;text-align:center}
.hidden{display:none!important}
