.zoomedImageContainer {
    position: fixed;
    background-color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.zoomedImage {    
    width: auto;
    max-height: 100%;
    display: block;
    position: relative;
    /* background-color: rgba(0, 0, 0, 0.8); */
    
}

.closeImage {
    position: absolute;
    top: 10px;
    right: 10px;
    color: black;
    cursor: pointer;
    border-radius: 50%;
}