/* styles.css */

/* Styling for the expanded image */
.expanded-image {
    max-width: 100%;
    max-height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    background-color: white;
}

/* Styling for the gallery images */
.gallery-image {
    width: 100px; /* Adjust as needed */
    height: 100px; /* Adjust as needed */
    margin: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.gallery-image:hover {
    transform: scale(1.1);
}
