.lpv-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(255,255,255,0.95);
}

.lpv-modal-content {
    background-color: #fff;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lpv-close-button {
    color: #333;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 9999;
}

.lpv-close-button:hover {
    color: #666;
}

#lpv-gallery-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    background: #f0f0f0;
}

#lpv-gallery-caption {
    color: #444;
    font-size: .75rem;
    margin-top: 10px;
    max-width: 80%;
    text-align: center;
}

#lpv-prev, #lpv-next {
    font-size: 3rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

#lpv-prev { left: 20px; }
#lpv-next { right: 20px; }

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
