:root {
  --green: #0b7d3b;
  --green-dark: #0b1c11;
  --bg: #f6f8f6;
  --card: #ffffff;
  --text: #17241b;
  --muted: #5c6e62;
  --danger: #b3261e;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
}
header {
  background: var(--green-dark);
  color: #fff;
  padding: 16px 20px;
}
header h1 { margin: 0; font-size: 1.4rem; }
.tagline { margin: 4px 0 0; color: #b7d4c1; font-size: 0.85rem; }
main { max-width: 560px; margin: 0 auto; padding: 16px; }
section {
  background: var(--card);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
h2 { margin-top: 0; }
label { display: block; margin: 12px 0; font-weight: 600; }
input {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #c8d4cc;
  border-radius: 8px;
}
button {
  display: block;
  width: 100%;
  margin: 12px 0;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}
button:disabled { background: #9db8a7; cursor: not-allowed; }
.hint { color: var(--muted); font-size: 0.85rem; }
.status { font-size: 0.9rem; font-weight: 600; }
.pu-option {
  text-align: left;
  background: #eef5f0;
  color: var(--text);
  border: 1px solid #c8d4cc;
  font-weight: 400;
}
select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #c8d4cc;
  border-radius: 8px;
  background: #fff;
}
.capture-slot {
  border: 1px dashed #c8d4cc;
  border-radius: 8px;
  padding: 12px;
  margin: 12px 0;
}
.capture-slot span { font-weight: 600; }
.capture-slot img { width: 100%; border-radius: 8px; margin-top: 8px; }
button.secondary {
  background: #eef5f0;
  color: var(--green);
  border: 1px solid var(--green);
}
details summary { cursor: pointer; font-weight: 600; color: var(--green); margin: 12px 0; }
.pu-option strong { color: var(--green); }
.vote-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 400;
  border-bottom: 1px solid #e3ebe5;
  padding-bottom: 8px;
}
.vote-row input { width: 110px; margin: 0; text-align: right; }
video, #photo-preview { width: 100%; border-radius: 8px; }
.status-verified { color: var(--green); }
.status-disputed { color: var(--danger); }
.status-reported { color: var(--muted); }
code { word-break: break-all; font-size: 0.75rem; }
footer {
  max-width: 560px;
  margin: 0 auto;
  padding: 16px;
  color: var(--muted);
  font-size: 0.8rem;
}
