@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

* { box-sizing: border-box; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f4f6f8;
  color: #222;
  margin: 0;
  padding: 0;
}
.brand {
  font-family: 'Michroma', sans-serif;
  letter-spacing: 0.5px;
}
.container {
  max-width: 680px;
  margin: 40px auto;
  background: #fff;
  padding: 32px 36px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
h1 { font-size: 22px; margin-top: 0; }
h2 { font-size: 18px; color: #2c3e50; }
p.instructions { color: #555; font-size: 14px; }
.item {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}
.item p { font-weight: 500; margin-bottom: 10px; }
.options { display: flex; flex-wrap: wrap; gap: 8px; }
.options label {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 14px;
}
.options input { margin-right: 6px; }
button, .btn {
  background: #2c6e49;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
button:hover, .btn:hover { background: #245b3b; }
input[type=text], input[type=email], input[type=date] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 15px;
}
label.field-label { font-weight: 500; display: block; margin-bottom: 6px; }
.flag-banner {
  background: #fdecea;
  border: 1px solid #f5c2c0;
  color: #a33a2e;
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
}
.crisis-box {
  background: #fff8e1;
  border: 1px solid #ffe082;
  padding: 16px 18px;
  border-radius: 6px;
  margin: 20px 0;
  font-size: 14px;
}
.score-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.score-table td, .score-table th {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
.disclaimer {
  font-size: 12px;
  color: #777;
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 14px;
}
table.admin-list { width: 100%; border-collapse: collapse; }
table.admin-list th, table.admin-list td {
  padding: 10px; border-bottom: 1px solid #eee; text-align: left; font-size: 14px;
}
.badge { padding: 3px 8px; border-radius: 10px; font-size: 12px; }
.badge.done { background: #e3f2e3; color: #276b27; }
.badge.progress { background: #fff3cd; color: #8a6d1d; }
.badge.flag { background: #fdecea; color: #a33a2e; font-weight: bold; }

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #23303d;
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  z-index: 1000;
}
.cookie-banner p { margin: 0; max-width: 700px; }
.cookie-banner a { color: #9ecbff; }
.cookie-banner button {
  background: #fff;
  color: #23303d;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  white-space: nowrap;
}
.legal-box {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 16px 18px;
  margin-bottom: 16px;
  font-size: 14px;
}
.legal-box label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.legal-box input[type=checkbox] { margin-top: 3px; }
.block-message {
  background: #fdecea;
  border: 1px solid #f5c2c0;
  color: #a33a2e;
  padding: 18px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

@media print {
  body { background: #fff; }
  .container { box-shadow: none; margin: 0; max-width: 100%; }
  .no-print { display: none !important; }
}
