/* LOR Lightbox Styles */
.lor-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lor-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lor-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    max-height: 90vh;
    z-index: 10001;
    background-color: var(--color-black);
    border-radius: 8px;
    overflow: hidden;
}

.lor-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.lor-lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lor-lightbox-container {
    width: 100%;
    height: 100%;
    padding: 60px 20px 20px;
    box-sizing: border-box;
}

.lor-lightbox-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

