
.gallery {
    display: flex;
    flex-wrap: wrap;
}

.card {
    border: none;
}

.thumbnail-container {
    height: 150px; /* Set the desired height for the thumbnails */
    overflow: hidden; /* Hide any overflow to maintain fixed height */
}

.thumbnail-container img {
    width: 100%; /* Make the image fill the width of the container */
    height: 100%; /* Maintain the aspect ratio of the original image. It was auto but I put 100% */
    object-fit: cover; /* Crop the image to cover the container */
}

.card-img-top {
    border-radius: 0;

    width: 100%; /* Make the image fill the width of the container */
    height: auto; /* Maintain the aspect ratio of the original image */
    object-fit: cover; /* Crop the image to cover the container */

}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    display: block;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
