.loading {
    position: fixed;
    z-index: 50000;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    opacity: 0.5;
    margin: 0 auto;
    text-align: center;
}

.loading-image {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 37%;
    margin: 0 auto;
    opacity: 1;
}

.text-blur {
    /* font-size: 40px; */
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.watermark-container {
    position: relative;
  }

.watermark-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%); /* Centers the text exactly in the middle of the image */
font-size: 20px; /* Example font size */
color: black; /* Text color, assuming a dark background for visibility */
font-weight: bold;
}

.zoom-img {
    width: 200px;
    /* height: 500px; */
    /* overflow: scroll; */
}

.zoom-img img {
    width: 200px;
    transition: width 0.25s ease;
}

.zoom-img img:hover {
    width: 650px;
}
