/* Style for the gallery images */
.thumbnail {
    width: 150px;
    height: 100px;
    margin: 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
}

/* Lightbox styling */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

#prev, #next {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 50px;
    cursor: pointer;
    user-select: none;
    padding: 20px;
    transform: translateY(-50%);
}

#prev {
    left: 10px;
}

#next {
    right: 10px;
}

#prev:hover, #next:hover {
    color: #ddd;
}
