.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.lightbox-overlay:target {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: #000;
  padding: 20px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  color: black;
  text-decoration: none;
  font-size: 30px;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 4px;
  line-height: 1;
}

.lightbox-close:hover {
  background: #f0f0f0;
}

.lightbox-content p {
    color: #ffffff;
}