#custom-gallery-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

#custom-gallery-popup.active {
  display: block;
}

#custom-gallery-popup .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

#custom-gallery-popup .gallery-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#custom-gallery-popup .gallery-image {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
}

#custom-gallery-popup .gallery-close,
#custom-gallery-popup .gallery-prev,
#custom-gallery-popup .gallery-next {
    position: absolute;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    font-size: 28px;
    z-index: 2;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

#custom-gallery-popup .gallery-close {
  top: 20px;
  right: 20px;
}

#custom-gallery-popup .gallery-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#custom-gallery-popup .gallery-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {

  #custom-gallery-popup .gallery-prev {
    left: 10px;
  }

  #custom-gallery-popup .gallery-next {
    right: 10px;
  }

}