/* Villa Kroost Werkplan Checker — Stijl
   Gebruikt Salient/site-kleuren als variabelen */

.vk-checker {
    max-width: 680px;
    margin: 0 auto;
    font-family: inherit;
    color: inherit;
}

/* ── WELKOMTEKST ─────────────────────────────────────────────────────────── */
.vk-welkom {
    background: #fdf0f6;
    border-left: 4px solid #d01974;
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 0 6px 6px 0;
}
.vk-welkom h2 {
    color: #d01974;
    margin: 0 0 10px;
    font-size: 1.3em;
}
.vk-welkom p {
    margin: 0 0 8px;
    font-size: 0.95em;
    line-height: 1.6;
}
.vk-welkom p:last-child { margin-bottom: 0; }

/* ── UPLOAD ZONE ─────────────────────────────────────────────────────────── */
.vk-upload-zone {
    border: 2px dashed #d01974;
    border-radius: 8px;
    padding: 32px 20px;
    text-align: center;
    background: #fff8fb;
    cursor: pointer;
    transition: background 0.15s;
    margin-bottom: 16px;
    position: relative;
}
.vk-upload-zone:hover { background: #fae6f1; }
.vk-upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.vk-upload-icon {
    font-size: 2.5em;
    color: #d01974;
    margin-bottom: 8px;
    line-height: 1;
}
.vk-upload-tekst {
    color: #d01974;
    font-weight: 600;
    font-size: 1em;
    margin: 0 0 4px;
}
.vk-upload-sub {
    color: #999;
    font-size: 0.85em;
    margin: 0;
}

/* ── BESTANDSNAAM ────────────────────────────────────────────────────────── */
.vk-bestandsnaam {
    background: #f2fae3;
    border: 1px solid #76b828;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 0.9em;
    color: #27500A;
    margin-bottom: 16px;
}

/* ── EMAIL ───────────────────────────────────────────────────────────────── */
.vk-email-rij {
    margin-bottom: 16px;
}
.vk-email-rij label {
    display: block;
    font-size: 0.88em;
    color: #555;
    margin-bottom: 5px;
}
.vk-email-rij input[type="email"] {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95em;
    box-sizing: border-box;
    transition: border-color 0.15s;
}
.vk-email-rij input[type="email"]:focus {
    border-color: #d01974;
    outline: none;
}

/* ── FOUTMELDING ─────────────────────────────────────────────────────────── */
.vk-fout {
    background: #fcebeb;
    border: 1px solid #f7c1c1;
    border-radius: 6px;
    padding: 10px 14px;
    color: #501313;
    font-size: 0.9em;
    margin-bottom: 14px;
}

/* ── KNOP ────────────────────────────────────────────────────────────────── */
.vk-knop {
    background: #d01974;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 13px 24px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.15s;
}
.vk-knop:hover { opacity: 0.88; }
.vk-knop:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── PRIVACY NOOT ────────────────────────────────────────────────────────── */
.vk-privacynoot {
    font-size: 0.8em;
    color: #aaa;
    text-align: center;
    margin: 10px 0 0;
}

/* ── LADEN ───────────────────────────────────────────────────────────────── */
.vk-laden {
    text-align: center;
    padding: 40px 20px;
}
.vk-spinner {
    width: 36px;
    height: 36px;
    border: 4px solid #fae6f1;
    border-top-color: #d01974;
    border-radius: 50%;
    animation: vk-spin 0.8s linear infinite;
    margin: 0 auto 16px;
}
@keyframes vk-spin { to { transform: rotate(360deg); } }
#vk-laden-tekst {
    color: #888;
    font-size: 0.95em;
}

/* ── RESULTAAT ───────────────────────────────────────────────────────────── */
.vk-resultaat { text-align: center; }

.vk-oordeel {
    border-radius: 6px;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 1em;
    margin-bottom: 14px;
    text-align: left;
}
.vk-oordeel.voldoende {
    background: #eaf3de;
    border: 1px solid #c0dd97;
    color: #27500A;
}
.vk-oordeel.onvoldoende {
    background: #fcebeb;
    border: 1px solid #f7c1c1;
    color: #501313;
}

#vk-resultaat-tekst {
    font-size: 0.95em;
    color: #444;
    margin-bottom: 24px;
    text-align: left;
}

.vk-download-knop {
    display: inline-block;
    background: #d01974;
    color: #fff !important;
    border-radius: 6px;
    padding: 13px 28px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none !important;
    margin-bottom: 14px;
    transition: opacity 0.15s;
}
.vk-download-knop:hover { opacity: 0.88; }

.vk-opnieuw-knop {
    display: block;
    background: transparent;
    border: 1.5px solid #d01974;
    color: #d01974;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 0.9em;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
    transition: background 0.15s;
}
.vk-opnieuw-knop:hover { background: #fae6f1; }

/* ── BEVESTIGING ─────────────────────────────────────────────────────────── */
.vk-bevestiging {
    text-align: center;
    padding: 32px 20px;
}
.vk-bevestiging-icoon {
    width: 64px;
    height: 64px;
    background: #76b828;
    color: #fff;
    border-radius: 50%;
    font-size: 2em;
    line-height: 64px;
    margin: 0 auto 16px;
}
.vk-bevestiging h3 {
    color: #d01974;
    font-size: 1.3em;
    margin: 0 0 12px;
}
.vk-bevestiging p {
    color: #444;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0 0 8px;
}
.vk-bevestiging-sub {
    color: #999 !important;
    font-size: 0.85em !important;
    margin-top: 12px !important;
}
.vk-verplicht { color: #d01974; }
.vk-email-info {
    font-size: 0.82em;
    color: #999;
    margin: 4px 0 0;
}
