.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    font-family: 'Manrope', sans-serif;
  }
  
  .lightbox.hidden {
    display: none;
  }
  
  .lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }
  
  .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    user-select: none;
  }
  
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 20;
  }
  
  .lightbox-nav.left {
    left: 10px;
  }
  
  .lightbox-nav.right {
    right: 10px;
  }
  
  #lightbox-caption {
    margin-top: 15px;
    color: white;
    font-size: 1rem;
    text-align: center;
  }
  
  #lightbox-instagram {
    display: block;
    margin-top: 10px;
    text-align: center;
  }
  
  .lightbox-caption p {
    margin: 0;
    padding: 0;
  }
  
  .lightbox-caption a img {
    margin-top: 8px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
  }
  