/* assets/css/style.css */
:root{
  --green:#214a36;
  --bg:#f7f7f7;
  --card:#ffffff;
  --muted:#6b6b6b;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

body{
  margin:0;
  background:var(--bg);
  color:#222;
}

.topbar{
  background:#fff;
  border-bottom:1px solid #eee;
  padding:18px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.container{
  max-width:1100px;
  margin:30px auto;
  padding:0 16px;
}

h1,h2{ margin:0 0 8px 0; }
a{ color:var(--green); text-decoration:none; }
