.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  display: block !important;
  border-radius: 8px;
}

#lightbox-content img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 8px;
}

.lightbox-wrapper {
  text-align: center;
  margin: 10px auto;
}

.lightbox-trigger {
  width: 100px !important;
  height: auto !important;
  display: block !important;
  margin: 10px auto !important;
  border-radius: 8px !important;
  cursor: pointer;
}

