.lightbox-dialog {
  z-index: 1000;
  background: #000000e6;
  border: none;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

.lightbox-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-caption {
  color: #fff;
  text-align: center;
  max-width: 90%;
  margin-top: 10px;
  font-size: 1rem;
}

.lightbox-prev-button, .lightbox-next-button, .lightbox-close-button {
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 2rem;
  position: absolute;
}

button:is(.lightbox-prev-button, .lightbox-next-button, .lightbox-close-button):-webkit-any(:hover, :focus) {
  background-color: unset;
}

button:is(.lightbox-prev-button, .lightbox-next-button, .lightbox-close-button):is(:hover, :focus) {
  background-color: unset;
}

.lightbox-prev-button {
  left: 10px;
}

.lightbox-next-button {
  right: 10px;
}

.lightbox-close-button {
  top: 10px;
  right: 10px;
}
