.thumbnail-container {
    cursor: pointer;
    margin-bottom: 20px;
    border: 2px solid #ccc;
    padding: 5px;
    background-color: #fff;
}

.thumbnail {
    width: 100%;

    /* Adjust thumbnail size */
    height: auto;
    transition: transform 0.2s ease;

    /* Smooth hover effect */
}

/* Full-screen container for zoomed image */
.zoomed-image-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: zoom-out;
}

.zoomed-image {
    max-width: 50%;
    max-height: 50%;
    transition: transform 0.5s ease;
    transform-origin: center center;
}

/* Zoom effect on hover */
.thumbnail-container:hover .thumbnail {
    transform: scale(1.05);

    /* Slight zoom effect for preview */
}
