/* Global lightbox styles */
#global-lightbox-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
  }
  #global-lightbox-overlay.open {
    display: flex;
  }
  #global-lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    transition: opacity 150ms ease-in-out;
  }
  #global-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 10px;
    cursor: pointer;
  }
  
  /* Make images opt-in show zoom cursor */
  img[data-lightbox], img[data-lightbox-src] {
    cursor: zoom-in;
  }
  