body {
  font-family: sans-serif;
  text-align: center;
  padding: 2em;
}

#last-alert {
  max-width: 600px;
  margin: 0 auto;
}

#last-text {
  text-align: left;
  line-height: 1.3;
}

/* knoppen */
button {
  padding: 1em;
  font-size: 1em;
}

/* Mijn abonnement – provincies */
#my-provinces {
  list-style: none;
  padding: 0;
  margin: 0;
}

#my-provinces li {
  margin: 0.2em 0;
}

/* ===== PER PROVINCIE MELDING ===== */

.province-alert {
  margin: 6px 0 10px 0;
  padding: 0;
}

.province-alert strong {
  display: block;
  margin-bottom: 2px;
}

/* statusregel */
.province-alert .status-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  margin-bottom: 2px;
}

/* bolletje */
.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* kleuren */
.level-green  .status-dot { background: #2ecc71; }
.level-yellow .status-dot { background: #f1c40f; }
.level-orange .status-dot { background: #e67e22; }
.level-red    .status-dot { background: #e74c3c; }

/* =====================================================
 * PROFIEL FORMULIER (NAAM / EMAIL)
 * ===================================================== */

.card {
  max-width: 420px;
  margin: 1.5em auto;
  padding: 1em;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fafafa;
}

.card h2 {
  margin-top: 0;
}

/* inputs */
#wstac-profile input[type="text"],
#wstac-profile input[type="email"] {
  width: 100%;
  max-width: 100%;
  padding: 0.6em;
  margin-top: 0.2em;
  font-size: 1em;
  box-sizing: border-box;
}

/* feedback onder formulier */
.form-msg {
  margin-top: 0.6em;
  font-size: 0.9em;
  min-height: 1.2em;
}

/* foutmelding */
.form-msg[data-type="error"] {
  color: #c0392b;
}

/* ok-status (optioneel zichtbaar) */
.form-msg[data-type="ok"] {
  color: #27ae60;
}

