/* Thumbnail Images */
.gallery-thumbnail {
    cursor: pointer;
    width: 100%; /* Full width of the column */
    height: auto; /* Maintain aspect ratio */
    padding: 0;
    transition: transform 0.2s;
}

.gallery-thumbnail:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Modal Image */
.modal-body img {
    max-width: 100%;
    height: auto; /* Ensure the image is responsive */
}

