.epic-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 9999;
}

.epic-lightbox-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90vh;
}

.epic-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.epic-lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.epic-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.epic-lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.epic-lightbox-prev {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.epic-lightbox-next {
    right: 0;
    border-radius: 5px 0 0 5px;
} 