#imageCanvas {
  cursor: none;
}

.custom-pointer {
  position: fixed;
  pointer-events: none;
  z-index: 1000;
}

.zoom-box {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid white;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 2px black;
  overflow: hidden;
}

#zoomCanvas {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.crosshair {
  position: absolute;
  width: 21px;
  height: 21px;
  transform: translate(-50%, -50%);
}

.crosshair::before,
.crosshair::after {
  content: "";
  position: absolute;
  background-color: black;
}

.crosshair::before {
  left: 10px;
  width: 1px;
  height: 21px;
}

.crosshair::after {
  top: 10px;
  height: 1px;
  width: 21px;
}

.canvas-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.canvas-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  overflow: hidden;
}

#imageCanvas {
  position: absolute;
  top: 0;
  left: 0;
  /* width: 100%;
      height: 100%; */
  object-fit: contain;
}
