#imageViewerOverlayCont {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  overflow: auto;
}

#imageViewerOverlay {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  padding: 20px;
}

.imageGalleryFullImage {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.closeX {
  position: fixed;
  top: 20px;
  right: 30px;
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  user-select: none;
  border: 0;
  width: auto;
  height: auto;
  padding: 0;
}

.closeX:hover {
  background-color: transparent;
}

.fullImageNavBtn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 60px;
  font-weight: bold;
  cursor: pointer;
  padding: 20px;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  user-select: none;
}

.fullImageNavBtn:hover {
  background: rgba(0, 0, 0, 0.6);
}

#fullImageNavLeft {
  left: 10px;
}

#fullImageNavRight {
  right: 10px;
}