.footcare-form { 
    background: #f9f9f9; 
    padding: 20px; 
    max-width: 800px; 
    margin: 0 auto; 
}

.fc-section { 
    margin-bottom: 25px; 
}

.fc-section h3 { 
    margin-top: 0; 
    color: #000000; 
    border-bottom: 2px solid #00687A; 
    padding-bottom: 10px; 
    display: inline-block; 
}

/* --- TOGGLE STIJLEN --- */
.fc-collapsible-section .fc-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer; 
    background: #E0EDEF; 
    padding: 10px 15px;
    transition: background 0.2s;
}

.fc-collapsible-section .fc-toggle-header:hover {
    background: #BFD9DE; 
}

.fc-collapsible-section h3 {
    margin: 0;
    border: none;
    padding: 0;
    font-size: 1.1em;
}

.fc-toggle-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #5D125B; 
    padding: 0;
    line-height: 1;
}

.fc-info-text {
    font-size: 0.9em;
    color: #999999; 
    margin: 10px 0 15px 5px;
    font-weight: bold; /* Vetgedrukt, zoals gevraagd */
    font-style: normal; /* Niet cursief */
}

.fc-small-print {
    font-size: 0.85em;
    color: #000000;
    background: #FFF7E0; 
    padding: 10px;
    border-left: 3px solid #FDCA00; 
    margin-bottom: 15px;
}

.fc-toggle-content {
    padding: 15px 0 0 0;
}
/* ---------------------------------- */

.fc-row { 
    display: flex; 
    gap: 15px; 
    margin-bottom: 15px; 
    flex-wrap: wrap; 
}

.fc-col { flex: 1; min-width: 200px; }
.fc-col-2 { flex: 2; min-width: 200px; }
.fc-col-1 { flex: 1; min-width: 80px; }

.fc-row label { 
    display: block; 
    font-weight: 600; 
    margin-bottom: 5px; 
    color: #000000; 
}

/* Stijl voor invoervelden */
.fc-row input,
.fc-row input[type='text'], 
.fc-row input[type='email'], 
.fc-row input[type='date'], 
.fc-row select,
.fc-row select.fc-city-select
 { 
    width: 100%; 
    padding: 8px; 
    border: none; 
    border-radius: 0; 
    -webkit-appearance: none;
    border-bottom: 1px solid rgba(42,63,96,.15);; 
    box-sizing: border-box; 
    color: #00687A; /* Footcare kleur voor tekst (ook datum) */
    font-weight: 500;
    height: 30px!important;
}

/* Focus stijl voor actieve velden */
.fc-row input:focus,
.fc-row select:focus {
    border-color: #00687A;
    outline: none;
}

.fc-check-row { 
    margin-bottom: 10px; 
}

.fc-check-row.highlight { 
    background: #E0EDEF; 
    padding: 10px; 
    border-left: 4px solid #00687A; 
}

.fc-check-row .radios label,
.fc-check-row .checks label {
    margin-right: 15px;
    cursor: pointer;
    line-height: 1.5;
    display: inline-block;
}

#footcare-submit-btn { 
    background: #00687A; 
    color: #FFFFFF; 
    border: none; 
    padding: 12px 25px; 
    font-size: 16px; 
    cursor: pointer; 
    width: 100%; 
    font-weight: bold;
    transition: background 0.3s ease;
}

#footcare-submit-btn:hover { 
    background: #5D125B; 
}

#footcare-submit-btn:disabled { 
    background: #999999; 
    cursor: not-allowed; 
}

#footcare-msg { 
    margin-top: 15px; 
    text-align: center; 
    font-weight: bold; 
    min-height: 20px; 
}

.fc-attest-wait {
    max-width: 800px;
    margin: 1.5rem auto;
    padding: 20px;
    background: #E0EDEF;
    border-left: 4px solid #00687A;
}

.fc-attest-wait h2 {
    margin-top: 0;
}