.lightboxOverlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100vw;
    height: 100vh;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .lightboxOverlay.show {
    display: block;
    opacity: 1;
  }
  
  .lightbox {
    position: fixed;
    top: 50%;
    left: 50%;
    width: auto;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 10000;
    text-align: center;
    transform: translate(-50%, -50%);
    line-height: 0;
    font-weight: normal;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .lightbox.show {
    display: block;
    opacity: 1;
  }
  
  .lightbox .lb-image {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    margin: 0 auto;
    border-radius: 3px;
    transition: opacity 0.5s ease;
  }
  
  .lb-outerContainer {
    position: relative;
    background-color: white;
    width: auto;
    margin: 0 auto;
    border-radius: 4px;
    display: inline-block;
  }
  
  .lb-container {
    padding: 4px;
    position: relative;
  }
  
  .lb-close {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6L6 18M6 6l12 12' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
    z-index: 10001;
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }
  
  .lb-close:hover {
    opacity: 1;
  }
  
  .lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
  }
  
  .lb-prev,
  .lb-next {
    height: 100%;
    cursor: pointer;
    display: block;
    opacity: 0;
    transition: opacity 0.6s;
  }
  
  .lb-nav a.lb-prev {
    width: 34%;
    float: left;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 6l-6 6 6 6' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: left 48%;
    background-repeat: no-repeat;
    background-size: 30px 30px;
  }
  
  .lb-nav a.lb-next {
    width: 64%;
    float: right;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 6l6 6-6 6' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right 48%;
    background-repeat: no-repeat;
    background-size: 30px 30px;
  }
  
  .lb-nav a.lb-prev:hover,
  .lb-nav a.lb-next:hover {
    opacity: 1;
  }
  
  .lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  
  .lb-data {
    padding: 0 4px;
    color: #ccc;
  }
  
  .lb-data .lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em;
  }
  
  .lb-data .lb-caption {
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
  }
  
  .lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999999;
  }
  