#zoomContainer {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

#zoomedImage {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  cursor: grab;
  user-select: none;
  position: relative;
  object-fit: contain;
   cursor: grab;
  transition: transform 0.1s ease;
}

.FabZoom {
  cursor: zoom-in;
}

#zoomedImage {
  cursor: grab;
  transition: transform 0.1s ease;
}

#zoomedImage:active {
  cursor: grabbing;
}

.fabzoom.video-wrapper {
  position: relative;
  display: inline-block;
  cursor: zoom-in;
}

.fabzoom.video-wrapper::after {
  content: "▶";
  font-size: 3rem;
  color: white;
  text-shadow: 0 0 5px black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
