[data-screenshot-zoom] { cursor: zoom-in; }
[data-screenshot-zoom]:focus-visible { outline: 3px solid #315db8; outline-offset: 5px; }
.screenshot-zoom {
  position: fixed;
  inset: 0;
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 8px;
  max-width: 96vw;
  max-height: 94vh;
  max-height: 94dvh;
  background: #fff;
  box-shadow: 0 16px 60px #0006;
  overflow: auto;
}
.screenshot-zoom::backdrop { background: rgb(0 0 0 / 78%); }
.screenshot-zoom-image {
  display: block;
  width: min(1400px, 94vw);
  height: auto;
  max-height: 90vh;
  max-height: 90dvh;
  object-fit: contain;
  cursor: zoom-out;
}
.screenshot-zoom-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #172338;
  color: #fff;
  font: 30px/1 Arial, sans-serif;
  cursor: pointer;
}
.screenshot-zoom-close:focus-visible { outline: 3px solid #79baff; outline-offset: 2px; }
