#my-lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#my-lightbox-overlay.is-active {
  display: flex;
}

#my-lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh;
}

#my-lightbox-img {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

#my-lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
  padding: 0;
}

#my-lightbox-prev,
#my-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 12px 16px;
  z-index: 10000;
  border-radius: 4px;
  line-height: 1;
}

#my-lightbox-prev {
  left: 12px;
}

#my-lightbox-next {
  right: 12px;
}

#my-lightbox-prev:hover,
#my-lightbox-next:hover,
#my-lightbox-close:hover {
  opacity: 0.7;
}