/* Disable interaction with FooEvents date selection while keeping it visible */
.fooevents_bookings_selection_container,
.fooevents-booking-date-container {
    pointer-events: none; /* Prevents clicks/typing */
    opacity: 0.8;         /* Subtle visual cue that it is locked */
    user-select: none;    /* Prevents highlighting text */
}

/* Optional: Hide the "Clear" or "Reset" buttons if they appear */
.fooevents-booking-date-container .reset_variations {
    display: none !important;
}
