/* Blockierung aller Buchungs-Widgets */
#lodgify-widget {
    display: none !important;
}

.booking-section {
    display: none !important;
}

/* Alternativ: Overlay über das Widget legen */
.booking-blocked-overlay {
    position: relative;
}

.booking-blocked-overlay::after {
    content: "Buchungen sind derzeit nicht möglich";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 9999;
}
