/**
 * Photo Story Modal Styles - The Voice - FOR GOEM
 * Styles for the full-page modal/lightbox overlay
 */

.photo-story-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-story-modal.active {
    display: block;
    opacity: 1;
}

.photo-story-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Ensure modal is above everything */
.photo-story-modal {
    isolation: isolate;
}

/* Prevent scrolling when modal is open */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
