.venue-gallery-thumbnail {
    cursor: zoom-in;
  }

  #venueGalleryModal .modal-dialog {
    margin: 0;
    max-width: none;
    height: 100dvh;
  }

  #venueGalleryModal .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.95);
  }

  #venueGalleryModal .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  #venueGalleryModalImage {
    max-width: 100%;
    max-height: calc(100vh - 2rem);
    max-height: calc(100dvh - 2rem);
    object-fit: contain;
    cursor: zoom-out;
  }

  #venueGalleryModal .venue-gallery-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    z-index: 2;
    color: #fff;
    opacity: 1;
    text-shadow: none;
    font-size: 2rem;
  }

  #venueGalleryModal .venue-gallery-close:hover {
    color: #fff;
  }

  @media (max-width: 767px) {
    #venueGalleryModal .modal-body {
      padding: 0.5rem;
    }

    #venueGalleryModalImage {
      max-height: calc(100vh - 1rem);
      max-height: calc(100dvh - 1rem);
    }
  }