.aurora-zoom-stage {
  position: relative;
  overflow: hidden;
}

.aurora-zoom-stage img {
  cursor: zoom-in;
  transform-origin: center center;
  transition: transform 120ms ease;
  user-select: none;
}

.aurora-zoom-stage.is-zoomed img {
  cursor: grab;
}

.aurora-zoom-stage.is-dragging img {
  cursor: grabbing;
  transition: none;
}

.aurora-zoom-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(8, 115, 84, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 30px rgba(17, 49, 41, .18);
  backdrop-filter: blur(8px);
}

.aurora-zoom-controls button,
.aurora-zoom-controls span {
  min-width: 34px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #064235;
  font-size: .82rem;
  font-weight: 950;
}

.aurora-zoom-controls button {
  background: #e5f8ef;
  cursor: pointer;
}

.aurora-zoom-controls button:hover {
  background: #d8f3e8;
}

.aurora-zoom-controls span {
  min-width: 42px;
  background: transparent;
  color: #087354;
}
