body {
    font-family: Arial, sans-serif;
}

.gallery img {
    width: 200px;
    margin: 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Lightbox */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 10px;
}

.close, .prev, .next {
    position: absolute;
    color: white;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
}

.close {
    top: 20px;
    right: 30px;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.caption {
    margin-top: 15px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    max-width: 80vw;
}
