/* =====================================================
   MannenWerk Agenda — formulier CSS
   Overzicht-grid CSS wordt inline geprint door shortcode
   ===================================================== */

/* ---------- FORMULIER WRAPPER ---------- */
.mwa-form-wrap {
    max-width: 640px;
    margin: 2em auto;
}
.mwa-form-title {
    margin: 0 0 .4em;
}
.mwa-form-intro {
    margin: 0 0 1.6em;
    line-height: 1.6;
}

/* ---------- STAP INDICATOR ---------- */
.mwa-steps {
    display: flex;
    align-items: center;
    margin: 0 0 2em;
}
.mwa-step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: .35;
    transition: opacity .2s;
}
.mwa-step.active { opacity: 1; }
.mwa-step.done   { opacity: .6; }
.mwa-step-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid currentColor;
    font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mwa-step.active .mwa-step-num,
.mwa-step.done   .mwa-step-num {
    background: currentColor;
}
.mwa-step.active .mwa-step-num { color: inherit; }
.mwa-step-label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.mwa-step-line  { flex: 1; height: 1px; background: currentColor; opacity: .2; margin: 0 8px; min-width: 20px; }

/* ---------- FIELDSET / LEGEND ---------- */
.mwa-fieldset { border: none; margin: 0; padding: 0; }
.mwa-legend   { display: block; font-size: 1.05em; font-weight: 600; margin-bottom: 1.2em; }

/* ---------- VELDEN ---------- */
.mwa-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .mwa-row-2 { grid-template-columns: 1fr; } }

.mwa-field { display: flex; flex-direction: column; margin-bottom: 1em; }
.mwa-field label { font-size: .88em; font-weight: 600; margin-bottom: 5px; }
.mwa-field input[type=text],
.mwa-field input[type=email],
.mwa-field input[type=tel],
.mwa-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    font-size: .97em;
    background: transparent;
    color: inherit;
    transition: border-color .15s;
    box-sizing: border-box;
    font-family: inherit;
}
.mwa-field input:focus,
.mwa-field select:focus { outline: none; border-color: currentColor; }
.mwa-field input.mwa-invalid,
.mwa-field select.mwa-invalid { border-color: #c0392b; }

abbr[title="verplicht"] { text-decoration: none; color: #c0392b; }

/* ---------- WS INFO BLOK ---------- */
.mwa-ws-info {
    border-left: 2px solid currentColor;
    padding: 10px 16px;
    margin: -4px 0 16px;
    font-size: .88em;
    opacity: .75;
    line-height: 1.8;
}

/* ---------- RADIO TARIEF ---------- */
.mwa-radio-group { display: flex; gap: 24px; flex-wrap: wrap; }
.mwa-radio-label { display: flex; align-items: center; gap: 8px; font-size: .95em; cursor: pointer; }
.mwa-radio-label input[type=radio] { width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; }

/* ---------- AKKOORD CHECKBOXES ---------- */
.mwa-akkoord-blok {
    border: 1px solid currentColor;
    border-opacity: .2;
    padding: 16px 18px;
    margin: 1.2em 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 1;
}
.mwa-check-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9em;
    line-height: 1.5;
    cursor: pointer;
}
.mwa-check-label input[type=checkbox] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; cursor: pointer; }

/* ---------- SAMENVATTING ---------- */
.mwa-samenvatting {
    padding: 14px 18px;
    margin: 1em 0;
    font-size: .88em;
    line-height: 1.7;
    border: 1px solid currentColor;
    opacity: 1;
}
.mwa-samenvatting strong { display: block; margin-bottom: 6px; font-size: .85em; letter-spacing: .08em; text-transform: uppercase; }

/* ---------- NAVIGATIE ---------- */
.mwa-nav        { display: flex; margin-top: 1.6em; gap: 12px; }
.mwa-nav-right  { justify-content: flex-end; }
.mwa-nav-split  { justify-content: space-between; }

.mwa-btn {
    padding: 11px 26px;
    border: none;
    font-size: .88em;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .05em;
    font-family: inherit;
    transition: opacity .15s;
}
.mwa-btn-next,
.mwa-btn-submit { background: currentColor; color: inherit; }
.mwa-btn-back   { background: transparent; border: 1px solid currentColor; }
.mwa-btn:hover  { opacity: .8; }

/* ---------- MELDINGEN ---------- */
.mwa-alert { padding: 16px 20px; margin-bottom: 1.5em; font-size: .97em; line-height: 1.6; border: 1px solid; }
.mwa-alert-ok   { border-color: #a5d6a7; background: rgba(165,214,167,.15); }
.mwa-alert-fout { border-color: #ef9a9a; background: rgba(239,154,154,.15); }

/* ---------- PRIVACY ---------- */
.mwa-privacy { font-size: .78em; opacity: .6; margin-top: 1em; line-height: 1.5; }
