#lightbox {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background: var(--lightbox-bg-color);
    opacity: 0; /* Initial opacity set to 0 */
    background-color: #000000c2;
    z-index: 99999;
    transition: opacity 0.5s; /* Cross-fade transition */
  }
  
  /* Container for the image and caption */
  #lightbox figure {
    max-width: calc(90vw - 100px);
    max-height: calc(90vh - 100px);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .lightbox-image {
    width: 60vw;
    height: 100%;
    max-height: calc(100vh - 100px); /* Adjusted to accommodate the caption */
    display: block;
    margin: 0;
    opacity: 0; /* Initial opacity */
    transition: opacity 0.5s; /* Cross-fade transition */
    object-fit: contain;
    aspect-ratio: 4/3;
  }
  
  #lightbox-caption {
    color: var(--lightbox-caption-text-color);
    text-align: center;
    width: 100%;
    height: 80px; /* Fixed height for the caption */
    background: rgba(
      0,
      0,
      0,
      0
    ); /* Semi-transparent background for the caption */
    padding: 10px; /* Padding for spacing */
    box-sizing: border-box;
    padding-top: 15px;
  }
  
  /* Styling for h2 and p in the caption */
  #lightbox-caption h2 {
    font-size: 1.2em; /* Adjust as needed */
    margin: 0;
  }
  
  #lightbox-caption p {
    font-size: 0.9em; /* Adjust as needed */
    margin: 0;
  }
  
  #close,
  #prev,
  #next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 10px;
    border-radius: 5px;
    color: var(--lightbox-controls-color);
  }
  
  #lightbox #close {
    top: 35px;
    right: 20px;
    width: 35px;
    height: 35px;
  }
  
  #lightbox #close:hover {
    background: rgba(178, 34, 52, 0.95);
  }
  #lightbox #close {
    text-indent: -9999px;
    cursor: pointer;
  }
  #lightbox #close:after,
  #lightbox #close:before {
    content: "" "";
    width: 55%;
    height: 2px;
    background: #fafafa;
    position: absolute;
    top: 48%;
    left: 22%;
    transform: rotate(-45deg);
    transition: 0.3s ease-out;
  }
  #lightbox #close:after {
    transform: rotate(45deg);
    transition: 0.3s ease-out;
  }
  #lightbox #close:hover:after,
  #lightbox #close:hover:before {
    transform: rotate(180deg);
  }
  
  #lightbox #prev {
    left: 20px;
  }
  
  #lightbox #next {
    right: 20px;
  }
  
  #close:hover,
  #prev:hover,
  #next:hover {
    color: var(--lightbox-controls-hover-color);
    transition: all 0.5s ease-in-out;
  }
  
  /* Demo styles */
  
  .top-title {
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
  }
  
  .gallery {
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 20px; /* Row gap */
    column-gap: 20px; /* Column gap */
  }
  
  .gallery img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  
    width: 100%;
    height: auto;
    /* aspect-ratio: 4/4; */
    object-fit: contain;
  }
  
  .gallery img:hover {
    transform: scale(1.05) translateY(-5px);
  }
  @media (max-width: 980px) {
    .gallery img:hover {
      transform: none;
    }
  }
  
  /* Demo page styles */


  article {
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
    txt-align: center;
    padding-top:50px;
  }
  
  article a {
    color: white;
    text-decoratin: none;
    text-decoration:none;
    font-size:150%;
  }
  
  article a:hover { color:red;}
  article a span {font-size:150%;padding-right:10px;}
  
   .code-container {
              position: relative;
              background: #292929;
         
              padding: 0px;
              border-radius: 5px;
          }
          .code-container pre {
              white-space: pre-wrap;
              word-wrap: break-word;
              overflow-x: auto;
              background: #111;
            padding:20px;
          }
          .copy-button {
              position: absolute;
              top: 10px;
              right: 10px;
              background: #007bff;
              color: white;
              border: none;
              padding: 5px 10px;
              cursor: pointer;
              border-radius: 5px;
          }
  article li {margin-top:15px;}


  @media (max-width:767px){
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 10px;
    column-gap: 10px;
    }
  }