/* magnifier.css */
.img-magnifier-container {
  position: relative;
}

.img-magnifier-glass {
  position: absolute;
  border: 3px solid #000;
  /* Removed border-radius for square shape */
  cursor: none;
  background-color: white;
  /* Increased size by 2x */
  width: 200px;
  height: 200px;
}
