/* ---
   Stylesheet voor Publieke Formulieren
   --- */

/* Zorgt voor de donkere achtergrond op de pagina */
body {
    background-color: #008080;
}

/* De witte 'kaart' waarin het formulier staat */
.form-card {
    background-color: var(--color-surface);
    color: var(--color-text);
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    max-width: 800px;
    margin: 0 auto;
}

.form-card h1, .form-card h2 { text-align: center; }
.form-card h1 { margin-bottom: 0.5rem; }
.form-card h2 { margin-bottom: 2.5rem; color: var(--color-secondary); }

/* Algemene formulier opmaak */
.form-card label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

/* AANGEPAST: input[type="email"] toegevoegd aan de lijst */
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="date"],
.form-card input[type="file"],
.form-card select,
.form-card textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: var(--font-main);
    margin-bottom: 1rem;
}

.form-card .submit-wrapper {
    text-align: right;
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Stijl voor de foto-miniaturen */
.thumbnail-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: -5px;
    margin-bottom: 15px;
}
.thumbnail-preview-container img {
    height: 90px;
    width: 90px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Grijze 3D Knop */
.btn-3d--grey {
    background-color: #e0e0e0;
    color: #333;
    box-shadow: 0 4px #b0b0b0;
}

.btn-3d--grey:hover {
    background-color: #f0f0f0;
    box-shadow: 0 6px #b0b0b0;
}

.btn-3d--grey:active {
    box-shadow: 0 2px #b0b0b0;
}

/* Feedback Berichten */
.bericht-feedback {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.bericht-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.bericht-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Stijl voor de foto-miniaturen */
.thumbnail-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px; /* Een beetje ruimte boven de previews */
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #ddd;
}
.thumbnail-preview-container img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid #ccc;
}