* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #333; }

/* ── Login / auth-pagina's (klant en admin) ───────────────── */
.wf-auth-body {
  background: #12112a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wf-auth-card {
  background: white;
  border-radius: 10px;
  padding: 36px 32px;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  text-align: center;
}
.wf-auth-brand { font-size: 20px; font-weight: 700; color: #12112a; }
.wf-auth-sub { font-size: 12px; color: var(--wf-accent, #8275B1); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; margin-bottom: 18px; }
.wf-auth-intro { font-size: 13px; color: #666; margin-bottom: 18px; line-height: 1.5; }
.wf-auth-error { background: #fdecea; color: #b3261e; font-size: 12.5px; padding: 10px 12px; border-radius: 6px; margin-bottom: 16px; }
.wf-auth-form { display: flex; flex-direction: column; gap: 10px; }
.wf-auth-form input {
  padding: 12px 14px; border: 1.5px solid #ddd; border-radius: 6px;
  font-size: 15px; text-align: center; letter-spacing: 0.1em;
}
.wf-auth-form input:focus { outline: none; border-color: var(--wf-accent, #8275B1); }
.wf-auth-form button {
  background: var(--wf-accent, #8275B1); color: white; border: none;
  border-radius: 6px; padding: 12px; font-size: 14px; font-weight: 700;
  cursor: pointer;
}
.wf-auth-form button:disabled { opacity: .5; cursor: not-allowed; }

/* ── Overzichtspagina (klant en admin) ────────────────────── */
.wf-overview-body { background: #f4f4f2; min-height: 100vh; }
.wf-overview-header {
  background: #12112a; color: white; padding: 22px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.wf-overview-brand { font-size: 19px; font-weight: 700; }
.wf-overview-sub { font-size: 12px; color: var(--wf-accent, #8275B1); margin-top: 3px; }
.wf-logout-link { color: rgba(255,255,255,.7); font-size: 12.5px; text-decoration: none; }
.wf-logout-link:hover { color: white; }
.wf-overview-body-inner { max-width: 900px; margin: 0 auto; padding: 32px 24px; }
.wf-category { margin-bottom: 30px; }
.wf-category-title { font-size: 15px; font-weight: 700; color: #12112a; margin-bottom: 12px; }
.wf-page-list { display: flex; flex-direction: column; gap: 8px; }
.wf-page-link {
  background: white; border: 1px solid #e2e2e2; border-radius: 8px;
  padding: 14px 18px; display: flex; justify-content: space-between; align-items: center;
  text-decoration: none; color: #12112a; font-weight: 600; font-size: 13.5px;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.wf-page-link:hover { border-color: var(--wf-accent, #8275B1); }
.wf-badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 4px 9px; border-radius: 12px; white-space: nowrap; margin-left: 12px;
}
.wf-badge-pillar { background: #e6f4ea; color: #1e7e34; }
.wf-badge-keyword { background: #f0edf8; color: #8275B1; text-transform: none; }

/* ── Admin reactie-overzicht ───────────────────────────────── */
.wf-admin-nav { display: flex; gap: 18px; align-items: center; }
.wf-klant-select {
  padding: 7px 10px; border-radius: 6px; border: 1px solid rgba(255,255,255,.25);
  background: #1c1b3a; color: white; font-size: 12.5px; font-family: inherit;
}
.wf-upload-form .wf-klant-select,
.wf-upload-form select.wf-klant-select { background: white; color: #333; border: 1.5px solid #ddd; }
.wf-admin-section { margin-bottom: 14px; }
.wf-admin-section-label { font-size: 11px; font-weight: 700; color: #8275B1; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.wf-comment-item { background: white; border: 1px solid #e5e5e5; border-radius: 6px; padding: 10px 14px; font-size: 12.5px; margin-bottom: 6px; line-height: 1.5; }
.wf-comment-item.is-verwerkt { background: #f7f9f5; border-color: #d9e8d0; opacity: .75; }
.wf-comments-meta { font-size: 10.5px; color: #999; margin-top: 6px; }
.wf-admin-comment-acties { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.wf-verwerkt-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: #1e7e34; cursor: pointer;
}
.wf-admin-delete {
  background: none; border: none; color: #b3261e; font-size: 11px; font-weight: 600;
  text-decoration: underline; cursor: pointer; padding: 0;
}
.wf-admin-delete:disabled { opacity: .5; cursor: not-allowed; }

/* ── Admin: nieuwe pagina uploaden ──────────────────────────── */
.wf-upload-card {
  background: white; border: 1px solid #e2e2e2; border-radius: 8px;
  padding: 24px; max-width: 480px; box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.wf-upload-form { display: flex; flex-direction: column; gap: 14px; }
.wf-upload-form label { font-size: 12px; font-weight: 700; color: #12112a; display: flex; flex-direction: column; gap: 5px; }
.wf-upload-form input[type=text], .wf-upload-form input[type=file], .wf-upload-form select {
  padding: 10px 12px; border: 1.5px solid #ddd; border-radius: 6px; font-size: 13px; font-family: inherit; font-weight: 400;
}
.wf-upload-form input:focus, .wf-upload-form select:focus { outline: none; border-color: var(--wf-accent, #8275B1); }
.wf-upload-form button {
  background: var(--wf-accent, #8275B1); color: white; border: none;
  border-radius: 6px; padding: 12px 22px; font-size: 13.5px; font-weight: 700;
  cursor: pointer; align-self: flex-start;
}
.wf-upload-success { background: #e6f4ea; color: #1e7e34; font-size: 12.5px; padding: 10px 12px; border-radius: 6px; margin-bottom: 16px; }
.wf-upload-error { background: #fdecea; color: #b3261e; font-size: 12.5px; padding: 10px 12px; border-radius: 6px; margin-bottom: 16px; }

/* ── Admin: klanten beheren ──────────────────────────────────── */
.wf-klanten-lijst { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.wf-klant-rij {
  background: white; border: 1px solid #e2e2e2; border-radius: 8px;
  padding: 12px 16px; display: flex; align-items: center; gap: 14px;
  font-size: 13px; box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.wf-klant-kleur { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.wf-klant-naam { font-weight: 700; color: #12112a; flex: 1; }
.wf-klant-paginas { color: #777; font-size: 12px; }
.wf-klant-status { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #1e7e34; }
.wf-klant-status.is-inactief { color: #b3261e; }
.wf-klant-acties { display: flex; gap: 14px; }
.wf-link-button {
  background: none; border: none; color: #8275B1; font-size: 11.5px; font-weight: 600;
  text-decoration: underline; cursor: pointer; padding: 0; font-family: inherit;
}
