.lightbox {
  display: none;
  position: fixed;
  z-index: 9999999;
  padding: 60px 0;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.lightbox img {
  max-width: 80%;
  max-height: 80%;
  margin: 0 auto;
  border: 4px solid white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.lightbox .prev, .lightbox .next{
  cursor: pointer;
  position: absolute;
  top: 50%;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}
.lightbox .prev {
  left: 10px;
}
.lightbox .next {
  right: 10px;
}

.lightbox .delete-image-gallery {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}

.lightbox .download-image-gallery {
  position: absolute;
  bottom: 10px;
  left: 45%;
  transform: translateX(-50%);
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}

.lightbox .delete-media-image {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}
