/* ============================================================
   Event Reservering – Frontend Boekingsformulier Stijlen
   ============================================================ */

.em-booking-form {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px 24px;
    margin-bottom: 20px;
}

.em-booking-form h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px;
}

.em-field-wrap {
    margin-bottom: 14px;
}

.em-addon-options-wrap {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed #d9d9d9;
}

.em-addon-options-wrap h4 {
    margin: 0 0 8px;
    font-size: 15px;
}

.em-addon-option {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 14px;
    cursor: pointer;
}

.em-addon-option input[type="checkbox"] {
    margin-top: 2px;
}

.em-field-wrap label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

.em-booking-form select {
    width: 100%;
    max-width: 420px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

.em-booking-form select:focus {
    border-color: #96588a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(150, 88, 138, 0.2);
}

/* Beschikbaarheidsmelding */
.em-availability-notice {
    font-size: 13px;
    min-height: 20px;
    margin-top: 6px;
}

.em-notice-warning {
    color: #c00;
    font-weight: 600;
}

.em-notice-ok {
    color: #2a7a2a;
}

/* Verplicht sterretje */
.em-booking-form .required {
    color: #c00;
}

/* Toeslag & totaalprijs melding */
.em-notice-toeslag {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    padding: 10px 14px;
    background: #f0f8f0;
    border-left: 3px solid #2a7a2a;
    border-radius: 0 4px 4px 0;
    font-size: 13px;
    color: #1a1a1a;
}

.em-toeslag-line,
.em-total-line {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.em-total-line {
    font-weight: 700;
    color: #2a7a2a;
    font-size: 14px;
}

/* Visuele indicator op de prijs wanneer bijgewerkt */
.em-price-updated {
    transition: color 0.2s ease;
    color: #2a7a2a !important;
}

/* Disabled motor-opties */
.em-select-motor option:disabled {
    color: #aaa;
}
