/**
 * ==================================================================================
 * BOOKING MODAL TEXT FIX
 * ==================================================================================
 * Überschreibt ALLE Textfarben im Booking-Modal zu Schwarz
 * Wird als letztes CSS geladen um alle anderen Styles zu überschreiben
 * ==================================================================================
 */

/* ALLE TEXTE SCHWARZ MACHEN */
#booking-modal,
#booking-modal *,
#booking-modal p,
#booking-modal span,
#booking-modal div,
#booking-modal label,
#booking-modal h1,
#booking-modal h2,
#booking-modal h3,
#booking-modal h4,
#booking-modal h5,
#booking-modal h6 {
    color: #000000 !important;
}

/* Buttons behalten weiße Schrift */
#booking-modal .button,
#booking-modal .button-primary,
#booking-modal button[type="submit"],
#cash-booking-btn {
    color: #FFFFFF !important;
}

/* Platzhalter-Text grau */
#booking-modal input::placeholder,
#booking-modal textarea::placeholder {
    color: #9E9E9E !important;
}

/* Kalender Pfeile - WEISS auf TÜRKIS (statisch, kein Hover) */
.calendar-nav-btn,
.calendar-nav-btn svg,
.calendar-nav-btn svg path {
    color: #FFFFFF !important;
    stroke: #FFFFFF !important;
    fill: none !important;
}

.calendar-nav-btn:hover,
.calendar-nav-btn:hover svg,
.calendar-nav-btn:hover svg path {
    color: #FFFFFF !important;
    stroke: #FFFFFF !important;
}

/* Disabled Text heller aber noch sichtbar */
#booking-modal .is-disabled *,
#booking-modal [disabled] *,
#booking-modal .calendar-day-disabled {
    color: #757575 !important;
}

/* Ausgewählte Kalender-Tage mit weißem Text */
.calendar-day-selected,
.calendar-day-selected * {
    color: #FFFFFF !important;
}
