/* Basic page styling */
/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
    text-align: center;
} */

/* Thumbnail images */
.lighbox-image {
    cursor: pointer;
    /* transition: transform 0.2s; */
}

.lightbox-image:hover {
    /* transform: scale(1.05); */
}

/* Lightbox background */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

/* Lightbox image */
.lightbox img {
    /* max-width: 90%; */
    max-height: 90%;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* Close button */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.close:hover {
    color: #ccc;
}