/* Overlay pozadie */
#bookingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Kontajner */
.overlay-content {
    position: relative;
    width: 95%;
    height: 95%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

/* Zavrieť */
.close-overlay {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 40px;
    color: #333;
    cursor: pointer;
    z-index: 1000;
}

/* Iframe */
.booking-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Animácia */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}