/* /css/lightbox.css — overrides + styling for baguetteBox */

/* Overlay background */
.baguetteBox-overlay {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

/* Captions */
.baguetteBox-caption {
  color: #fff;
  font-size: 0.9rem;
  padding: 0.5em;
  text-align: center;
}

/* Arrows */
.baguetteBox-button {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  transition: background 0.2s;
}
.baguetteBox-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Close button */
.baguetteBox-button#close-button {
  top: 15px;
  right: 15px;
}

/* Rounded corners for images */
.baguetteBox-slide img {
  border-radius: 8px;
}