/* Photo Viewer Component */
.photo-viewer {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-in-out;
}

.photo-viewer-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 20px 20px;
    box-sizing: border-box;
}

.photo-viewer-image {
    max-width: 90%;
    max-height: calc(100vh - 200px);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    display: block;
    flex-shrink: 0;
}

.photo-viewer-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    line-height: 1;
    padding: 0;
}

.photo-viewer-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.photo-viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    -webkit-user-select: none;
    user-select: none;
    line-height: 1;
    padding: 0;
    z-index: 10001;
}

.photo-viewer-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.photo-viewer-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.photo-viewer-prev {
    left: 20px;
}

.photo-viewer-next {
    right: 20px;
}

.photo-viewer-caption {
    position: static;
    margin-top: 15px;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 20px;
    border-radius: 8px;
    max-width: 90%;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
    white-space: pre-line;
    word-wrap: break-word;
    flex-shrink: 0;
}

.photo-viewer-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

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

/* Responsive */
@media (max-width: 768px) {
    .photo-viewer-close {
        top: 10px;
        right: 10px;
        font-size: 24px;
        width: 40px;
        height: 40px;
    }
    
    .photo-viewer-nav {
        font-size: 20px;
        width: 40px;
        height: 40px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .photo-viewer-prev {
        left: 5px;
    }
    
    .photo-viewer-next {
        right: 5px;
    }
    
    .photo-viewer-counter {
        top: 10px;
        left: 10px;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .photo-viewer-caption {
        margin-top: 10px;
        font-size: 14px;
        padding: 8px 16px;
        max-width: 95%;
        line-height: 1.2;
    }
    
    .photo-viewer-image {
        max-width: 85%;
        max-height: calc(100vh - 180px);
    }
    
    .photo-viewer-content {
        padding: 50px 10px 10px 10px;
    }
}

/* Extra kleine schermen */
@media (max-width: 480px) {
    .photo-viewer-image {
        max-width: 90%;
        max-height: calc(100vh - 160px);
    }
    
    .photo-viewer-caption {
        max-width: 98%;
        font-size: 13px;
        padding: 6px 12px;
        margin-top: 8px;
        line-height: 1.2;
    }
    
    .photo-viewer-content {
        padding: 45px 5px 5px 5px;
    }
    
    .photo-viewer-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .photo-viewer-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: 8px;
        right: 8px;
    }
}

/* Extra grote schermen */
@media (min-width: 1200px) {
    .photo-viewer-close {
        font-size: 36px;
        width: 60px;
        height: 60px;
    }
    
    .photo-viewer-nav {
        font-size: 32px;
        width: 60px;
        height: 60px;
    }
}
