/* Naanoos Nieuwsbrief – Havion stijl */

/* ── Standaard (gestapeld) formulier ──────────────────────────────── */
.nn-form-wrap { max-width: 520px; }
.nn-form       { display: flex; flex-direction: column; gap: 10px; }

/* ── Havion inline balk ───────────────────────────────────────────── */
.nn-form.nn-form-inline {
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 6px;
  padding: 4px 4px 4px 12px;
  align-items: center;
  max-width: 420px;
}

.nn-form.nn-form-inline .nn-input {
  flex: 1 1 0;
  min-width: 0;
  background: transparent;
  border: none;
  padding: 10px 0;
  font-size: 14px;
  color: #ffffff;
  outline: none;
  font-family: inherit;
}

.nn-form.nn-form-inline .nn-input::placeholder {
  color: #888;
}

.nn-form.nn-form-inline .nn-btn {
  flex-shrink: 0;
  background: #F5A623;
  color: #111;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .1s;
  padding: 0;
  line-height: 1;
}

.nn-form.nn-form-inline .nn-btn:hover  { background: #e0941a; transform: scale(1.05); }
.nn-form.nn-form-inline .nn-btn:active { transform: scale(.97); }

/* ── Standaard (grote) invoer + knop ──────────────────────────────── */
.nn-input {
  padding: 10px 16px;
  border: 1px solid #2e2e2e;
  border-radius: 6px;
  font-size: 14px;
  color: #fff;
  background: #1a1a1a;
  outline: none;
  font-family: inherit;
  width: 100%;
}
.nn-input:focus { border-color: #F5A623; }
.nn-input::placeholder { color: #888; }

.nn-btn {
  background: #F5A623;
  color: #111;
  border: none;
  padding: 11px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
  white-space: nowrap;
}
.nn-btn:hover { background: #e0941a; }

/* ── Feedback berichten ───────────────────────────────────────────── */
.nn-result { font-size: 13px; margin: 4px 0 0; }
.nn-result.nn-ok  { color: #4CAF50; }
.nn-result.nn-err { color: #E57373; }
.nn-notice { font-size: 14px; color: #ccc; margin-bottom: 14px; }

/* Inline result iets meer ruimte */
.nn-form.nn-form-inline + .nn-result,
.nn-form.nn-form-inline .nn-result {
  margin-top: 8px;
  width: 100%;
}

/* ── Admin ────────────────────────────────────────────────────────── */
.nn-status-active       { color: #4CAF50; font-weight: 500; }
.nn-status-pending      { color: #FF9800; font-weight: 500; }
.nn-status-unsubscribed { color: #9E9E9E; }
