:root{
  --green:#1a7f37;
  --green-100:#e6f4ea;
  --bg:#f7faf7;
  --text:#0b1f0f;
  --card:#ffffff;
  --muted:#6b7f6d;
}
*{box-sizing:border-box;}
html,body{
  margin:0;
  padding:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}
.container{
  max-width:980px;
  margin:0 auto;
  padding:24px;
}
.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:24px;
}
.badge{
  background:var(--green-100);
  color:var(--green);
  padding:4px 10px;
  border-radius:999px;
  font-weight:600;
  font-size:12px;
}
.card{
  background:var(--card);
  border-radius:16px;
  padding:18px 18px;
  box-shadow:0 4px 20px rgba(0,0,0,.06);
  border:1px solid #e8efe8;
}
h1{
  font-size:28px;
  margin:0;
  letter-spacing:.2px;
}
h2{
  font-size:18px;
  margin:0 0 8px 0;
}
.grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
@media (min-width:840px){
  .grid{grid-template-columns:1fr 1fr;}
}
label{
  font-size:14px;
  color:#2d3c2f;
  display:block;
  margin:8px 0;
}
input,select{
  width:100%;
  padding:10px 12px;
  border:1px solid #d9e6da;
  border-radius:12px;
  background:#fff;
}
button{
  appearance:none;
  border:none;
  background:var(--green);
  color:#fff;
  border-radius:14px;
  padding:12px 16px;
  font-weight:700;
  cursor:pointer;
  transition:transform .02s ease,opacity .2s;
}
button:active{transform:translateY(1px);}
#msg{
  min-height:22px;
  font-size:14px;
  color:var(--muted);
  margin-top:6px;
}
.row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
}
.bar{
  background:var(--green-100);
  height:12px;
  border-radius:999px;
  overflow:hidden;
}
.bar > span{
  display:block;
  height:12px;
  background:var(--green);
  border-radius:999px;
}
.lb-item{
  padding:8px 0;
  border-bottom:1px dashed #e8efe8;
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.lb-item:last-child{border-bottom:none;}
.small{color:var(--muted);font-size:12px;}
.footer{
  margin-top:18px;
  font-size:12px;
  color:var(--muted);
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
hr{border:none;border-top:1px solid #e8efe8;margin:12px 0;}
.section-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
@media (max-width:720px){
  .section-grid{grid-template-columns:1fr;}
}