#uniqueImageStyle {
    width: 400px; /* Initial width */
    cursor: zoom-in; /* Changes cursor to a zoom icon */
    transition: transform 0.25s ease; /* Smooth transition for the transform property */
}

/* Class added by JavaScript to enlarge the image */
img.enlarged {
    transform: scale(2.2); /* Enlarges the image by 1.5 times its size */
    cursor: zoom-out; /* Changes cursor to a zoom-out icon */
    position: fixed; /* Positions the enlarged image relative to the viewport */
    top: 55%;
    left: 55%;
    transform: translate(-50%, -50%) scale(2.2); /* Centers the image and then scales it */
    z-index: 100; /* Ensures the image is on top of other content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Adds a subtle shadow */
}
