/* ── Ethias brand colours ─────────────────────────────────────── */
:root {
  --ethias-blue: #003E8C;
  --ethias-mid:  #0055B3;
  --ethias-light:#E8F0FB;
}

/* ── Header ──────────────────────────────────────────────────── */
.ethias-header {
  background: linear-gradient(135deg, var(--ethias-blue) 0%, var(--ethias-mid) 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.ethias-logo-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--ethias-blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.4rem;
  flex-shrink: 0;
}
/* Club logo in header */
.header-club-logo {
  max-height: 52px;
  max-width: 130px;
  object-fit: contain;
  flex-shrink: 0;
}
/* Club warning banner on the form */
.club-banner {
  background: rgba(0,62,140,.08);
  border-left: 4px solid var(--ethias-mid) !important;
  border-radius: 8px;
}
.ethias-footer {
  background: #f4f6fa;
  border-top: 1px solid #dde3ee;
}

/* ── Section cards ───────────────────────────────────────────── */
.section-card {
  border: 1px solid #d0d9ee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.section-header {
  background: linear-gradient(90deg, var(--ethias-blue) 0%, var(--ethias-mid) 100%);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem 1.1rem;
}
.section-badge {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: rgba(255,255,255,.25);
  border-radius: 50%;
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Primary button ──────────────────────────────────────────── */
.btn-ethias {
  background: var(--ethias-blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  transition: background .2s, transform .1s;
}
.btn-ethias:hover {
  background: var(--ethias-mid);
  color: #fff;
  transform: translateY(-1px);
}

/* ── File drop zone ──────────────────────────────────────────── */
.bijlagen-zone {
  background: var(--ethias-light);
  border: 2px dashed #a0b8e0;
  transition: background .2s, border-color .2s;
}
.bijlagen-zone.drag-over {
  background: #d0e4ff;
  border-color: var(--ethias-mid);
}
.border-dashed { border-style: dashed !important; }

/* ── Bevestiging success circle ──────────────────────────────── */
.success-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #28a745;
  display: flex; align-items: center; justify-content: center;
}

/* ── Error circle ────────────────────────────────────────────── */
.error-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #dc3545;
  display: flex; align-items: center; justify-content: center;
}

/* ── General form polish ─────────────────────────────────────── */
.form-control:focus, .form-select:focus {
  border-color: var(--ethias-mid);
  box-shadow: 0 0 0 .2rem rgba(0,85,179,.18);
}
.form-check-input:checked {
  background-color: var(--ethias-blue);
  border-color: var(--ethias-blue);
}
.card-body { padding: 1.4rem; }
.label-meisjesnaam {
  font-size: 0.8rem; /* Kleinere fontgrootte voor uitlijning */
}

/* ── Procedure Stepper ───────────────────────────────────────────── */
.procedure-stepper { position: relative; }

.proc-step {
  display: flex;
  gap: 1rem;
}

.proc-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

/* Icon circles */
.proc-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.14);
}
.proc-circle-speler  { background: var(--ethias-mid); }
.proc-circle-ethias  { background: #198754; }
.proc-circle-club    { background: #9da8b5; }

/* Connector line */
.proc-line {
  width: 2px;
  flex-grow: 1;
  min-height: 16px;
  background: #d8e2f0;
  margin: 5px 0;
}
.proc-line-dashed {
  background: repeating-linear-gradient(
    to bottom,
    #c8d4e8 0px, #c8d4e8 4px,
    transparent 4px, transparent 9px
  );
}

/* Step body */
.proc-body {
  padding-bottom: 1.2rem;
  flex: 1;
  min-width: 0;
}
.proc-body-club      { padding-bottom: .7rem; }
.proc-step-last .proc-body { padding-bottom: 0; }

/* Step number chip */
.proc-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--ethias-light);
  border-radius: 50%;
  font-size: .72rem; font-weight: 700;
  color: var(--ethias-blue);
  flex-shrink: 0;
}
.proc-num-sm { width: 18px; height: 18px; font-size: .65rem; }

/* Actor badges */
.proc-actor-badge {
  font-size: .72rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 20px;
  display: inline-flex; align-items: center;
}
.proc-badge-speler { background: #cce0f5; color: #003E8C; }
.proc-badge-ethias { background: #d1e7dd; color: #0a6640; }
.proc-badge-club   { background: #e8eaec; color: #5a6370; }

/* "Automatisch" tag on club step */
.proc-auto-tag {
  font-size: .7rem;
  background: #fff3cd;
  color: #856404;
  border: 1px solid rgba(255,193,7,.4);
  border-radius: 20px;
  padding: 2px 9px;
  display: inline-flex; align-items: center;
}

/* "U bent hier" tag on current step */
.proc-here-tag {
  font-size: .7rem;
  background: #cff4fc;
  color: #055160;
  border: 1px solid rgba(13,202,240,.4);
  border-radius: 20px;
  padding: 2px 9px;
  display: inline-flex; align-items: center;
}

/* Description text */
.proc-desc    { font-size: .88rem; color: #444; line-height: 1.55; }
.proc-desc-sm { font-size: .8rem;  color: #6c757d; line-height: 1.5; }

/* Current step highlight */
.proc-step-current .proc-circle {
  box-shadow: 0 0 0 5px rgba(0,85,179,.18), 0 2px 8px rgba(0,0,0,.14);
}

/* Club step: visually subdued */
.proc-step-club { opacity: .85; }

/* Legend pills */
.proc-legend-item {
  font-size: .75rem; font-weight: 600;
  padding: 3px 11px;
  border-radius: 20px;
  display: inline-flex; align-items: center;
}
.proc-legend-speler { background: #cce0f5; color: #003E8C; }
.proc-legend-ethias { background: #d1e7dd; color: #0a6640; }
.proc-legend-club   { background: #e8eaec; color: #5a6370; }

