/**
 * assets/css/fullscreen-viewer.css
 * Fullscreen Viewer
 * Argon Bangunan Cerdas Theme
 */

#argon-fullscreen-viewer {
  position: fixed;
  inset: 0;
  background: #000;
  display: none;
  z-index: 9999;
}

#argon-fullscreen-viewer.active {
  display: flex;
}

.afsv-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
  /* pastikan container menangkap pointer events */
  pointer-events: auto;
}

.afsv-container img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  will-change: transform;
  /* jangan menangkap klik, agar tombol tetap bisa diklik */
  pointer-events: none;
}

.afsv-ui {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
  /* pastikan tombol berada di atas image */
  z-index: 10000;
  pointer-events: auto;
}

.afsv-ui button {
  background: rgba(30, 41, 59, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
