/* تنسيقات صندوق العرض للصور */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    margin: auto;
    display: block;
    animation: fadeIn 0.3s;
}

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

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 15px;
    width: 100%;
    max-width: 800px;
}

.lightbox-caption h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.lightbox-caption p {
    color: #ccc;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-caption {
        padding: 10px;
    }
    
    .lightbox-caption h3 {
        font-size: 1.2rem;
    }
}
