/* Onboarding wizard — admin Fase B */

.onb-step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-50, #fef3c7);
  color: var(--brand-700, #b45309);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  margin-left: 10px;
  letter-spacing: 0.04em;
}

.onb-hint {
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
  background: #f8fafc;
  border-left: 3px solid #cbd5e1;
  padding: 8px 12px;
  border-radius: 6px;
  margin: 10px 0 14px;
}

.onb-group-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
}
.onb-group-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.onb-group-title {
  font-weight: 600;
  color: #334155;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.onb-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 13px;
}
.onb-summary-row > span { color: #64748b; }
.onb-summary-tbl {
  width: 100%;
  margin-top: 14px;
  border-collapse: collapse;
  font-size: 12px;
}
.onb-summary-tbl th {
  text-align: left;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 8px 10px;
  border-bottom: 1px solid #cbd5e1;
}
.onb-summary-tbl td {
  padding: 8px 10px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
}

.onb-success-icon {
  text-align: center;
  font-size: 56px;
  color: #10b981;
  line-height: 1;
  margin: 8px 0 4px;
}
.onb-success-title {
  text-align: center;
  font-size: 20px;
  margin: 0 0 6px;
  color: #0f172a;
}
.onb-success-sub {
  text-align: center;
  font-size: 13px;
  color: #64748b;
  margin: 0 0 18px;
}

.onb-cred-block {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
}
.onb-cred-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.onb-cred-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}
.onb-cred-row code {
  flex: 1;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 6px 10px;
  border-radius: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: #0f172a;
  word-break: break-all;
}
.onb-cred-row code.onb-copied {
  background: #ecfdf5;
  border-color: #6ee7b7;
}
.onb-cred-key {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  min-width: 92px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}


/* Multi-location styling */
.onb-loc-card {
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(15,23,42,.04);
}
.onb-loc-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #e2e8f0;
}
.onb-loc-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 14px;
}
.onb-loc-remove i { color: #dc2626; }
.onb-groups-wrap { margin-top: 8px; }

.onb-summary-loc {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 10px 0;
}
.onb-summary-loc-hd {
  font-weight: 600;
  color: #0f172a;
  font-size: 13px;
  margin-bottom: 8px;
}
.onb-summary-meta {
  font-weight: 400;
  color: #64748b;
  font-size: 12px;
  margin-left: 8px;
}


/* Fase C: verificatie-dashboard */
.verify-shell { display:flex; flex-direction:column; gap:14px; }
.verify-title { font-size:15px; font-weight:700; color:#0f172a; }
.verify-summary { display:flex; flex-wrap:wrap; gap:8px; }
.verify-summary .vstat {
  padding:4px 12px; border-radius:999px; font-size:12px; font-weight:600;
  background:#f1f5f9; color:#475569;
}
.verify-summary .vstat.ok { background:#ecfdf5; color:#047857; }
.verify-summary .vstat.pending { background:#fef3c7; color:#a16207; }
.verify-summary .vstat.warn { background:#fff7ed; color:#c2410c; }
.verify-summary .vstat.error { background:#fef2f2; color:#b91c1c; }

.verify-grid {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap:12px;
}
.vcard {
  background:#fff; border:1px solid #e2e8f0; border-radius:10px;
  padding:12px; display:flex; flex-direction:column; gap:6px;
  transition: border-color 0.2s;
}
.vcard-ok { border-left:4px solid #10b981; }
.vcard-pending { border-left:4px solid #f59e0b; }
.vcard-warn { border-left:4px solid #f97316; }
.vcard-error { border-left:4px solid #dc2626; }

.vcard-hd { display:flex; align-items:center; gap:6px; }
.vcard-hd i { font-size:18px; }
.vcard-ok .vcard-hd i { color:#10b981; }
.vcard-pending .vcard-hd i { color:#f59e0b; animation: vspin 1.5s linear infinite; }
.vcard-warn .vcard-hd i { color:#f97316; }
.vcard-error .vcard-hd i { color:#dc2626; }
@keyframes vspin { from {transform:rotate(0);} to {transform:rotate(360deg);} }

.vcard-name { font-weight:600; font-size:13px; color:#0f172a; flex:1; }
.vcard-extid { font-family:monospace; font-size:11px; color:#94a3b8; }
.vcard-status { font-size:12px; font-weight:600; color:#475569; }
.vcard-meta { font-size:11px; color:#64748b; font-family:'DM Mono', monospace; }
.vcard-vendor { font-size:11px; color:#94a3b8; text-transform:uppercase; letter-spacing:.04em; }
.vcard-hint { color:#94a3b8; font-style:italic; }

.verify-hints {
  background:#fefce8; border:1px solid #fde68a; border-radius:10px;
  padding:12px 14px; font-size:12px; color:#713f12;
}
.verify-hints h4 { margin:0 0 8px; font-size:13px; color:#a16207; }
.verify-hints ul { margin:0; padding-left:20px; line-height:1.7; }

.verify-foot-hint { font-size:11px; color:#94a3b8; flex:1; }


/* SMTP settings card — collapsible */
.adm-set-card-collapsible .adm-set-card-body-collapsed { display: none; }
.adm-set-card-collapsible.expanded .adm-set-card-body-collapsed { display: block; }
.adm-set-card-collapsible.expanded .adm-set-toggle-ico { transform: rotate(180deg); }
.adm-set-card-hd-toggle:hover { background: #fafbfc; }

.adm-set-smtp-test {
  margin-top: 14px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}
.adm-set-smtp-test .adm-set-label {
  margin-bottom: 6px;
  display: block;
}
