* {box-sizing: border-box;}

.img-magnifier-container {
  position:relative;
  margin-bottom: 10px;
}

.img-magnifier-glass {
  border: 3px solid #000;
  cursor: none;
  /*Set the size of the magnifier glass:*/
  width: 300px;
  height: 300px;
}

.hoverSquare{
  position: absolute;
  border: 3px solid #000;
  cursor: zoom-in;
  /*Set the size of the magnifier glass:*/
  width: 130px;
  height: 130px;
  display: none;
}


.div-magnifier-container {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Ensures the image doesn't overflow the container */
}

#img-main {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Maintains aspect ratio */
}

#div-glassPreview{
  visibility: hidden;
}

#div-glassPreview.show{
  visibility: unset;
}
