.gallery-image {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .gallery-image:hover {
            transform: scale(1.00);
        }
        .modal-img {
            width: 100%;
        }
        body {
  /* font-family: "Noto Sans", sans-serif; */
  /* text-align: center; */
}

.lazy-image {
    filter: blur(10px) !important;
    transition: filter 0.5s;
}
.lazy-image.loaded {
    filter: blur(0) !important;
}
.fa-blog {
    padding-left: 8px;
    margin-top: 20px !important;
    color: #68C7F8;
}
.fa-person-digging {
    padding-right: 4px !important;
    padding-left: 2px;
    margin-top: 4px !important;
    color: #5155FB !important;
    font-size: 0.8rem !important;
}
.fa-clipboard-check {
    padding-right: 4px !important;
    padding-left: 2px;
    margin-top: 4px !important;
    color: #008000 !important;
    font-size: 0.75rem !important;
}
.fa-file-pen{
    padding-right: 4px !important;
    padding-left: 2px;
    margin-top: 4px !important;
    color: #800000 !important;
    font-size: 0.75rem !important;
}
.lazyload {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.lazyload.loaded {
    opacity: 1;
}
.form-control {
    display: block;
    width: 50% !important;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-select {
        position: relative;
        appearance: none;
        background: url('data:image/svg+xml;charset=UTF8,%3Csvg xmlns%3D%22http://www.w3.org/2000/svg%22 fill%3D%22%23000%22 viewBox%3D%220 0 4 5%22%3E%3Cpath fill-rule%3D%22evenodd%22 d%3D%22M2 0L0 2h4L2 0z%22/%3E%3C/svg%3E') no-repeat right 0.75rem center;
        background-size: 12px 12px;
    }
    
.form-select:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }
    
.form-select {
        padding-right: 2.5rem;
        width: 60% !important;
    }

h1 {
  font-size: 24px;
}

#filter-controls {
  display: flex;
  justify-content: space-evenly;
  margin: 20px 0;
}


@media (max-width: 640px) {
  #filter-controls {
    display: block;
    margin: 20px 0;
  }
}

@media (min-width: 362px) {
  #filter-controls {
    display: block;
    margin: 0;
  }
}

#filter {
  font-family: "Jost", sans-serif;
  /*padding: 6px 12px; */
  padding-right: 24px;
  margin-top: 16px;
  font-size: .8rem;
  width: 180px;
  height: 2.2rem;
  font-weight: bold;
  border: solid;
  border-color: #FDBE33;
  outline: none;
  border-width: 1px;
  border-radius: 6px;
}
#gallery-section {
/*  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  */
 padding: 20px 0;
}

#gallery-section img {
 height: 360px;
 width: 100%;
 object-fit: cover;
 margin: 10px;
 margin-bottom:4px;
 margin-left: 7px;
 box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.5);
}




.gallery-image {
  cursor: pointer;
  min-width: 250px;
  max-width: 96%;
  margin: 10px;
  transform: scale(1);
  transition: all 0.2s linear;
  border-radius: 12px 12px 12px 12px !important;
}

.image:hover {
  box-shadow: 5px 5px 2px rgb(158, 158, 158);
  transform: scale(1.00);
}

.nav-bar .btn:hover {
  transform: scale(1.00) !important;
  transition: none !important;
}
#imageGallery {
    min-height: 800px; /* Adjust based on typical content */
}
/* Smooth image loading */
#imageGallery img {
    transition: opacity 0.3s ease-in;
}

#imageGallery img[loading="lazy"] {
    opacity: 1;
}

#imageGallery img.loaded {
    opacity: 1;
}
#search,
#search-button {
  border-radius: 10px;
  float: left;
  border: none;
  outline: none;
  padding: 4px 16px;
  font-size: 1.1rem;
  padding-left: 4px;
  padding-right: 4px;
  margin-top:8px;
  width: 120px;
  height: auto;
  /* text-align: center; */
}
#search {
  border: none;
}
#search-button {
  background-color: rgb(31, 31, 156);
  color: #fff;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  transition: all 0.2s linear;
  display: inline-block;
  /* text-align: center; */
}

#search-button:hover {
  color: rgb(31, 31, 156);
  background-color: white;
}

#pagination {
  letter-spacing: 0;
  padding-left: 4px !important;
  padding-right: 4px !important;
  overflow: visible; /* Allow numbers to display properly */
  margin: 20px 0;
}

.pagination {
      display: flex !important;
      flex-wrap: wrap !important; /* Enable wrapping of pagination numbers */
      justify-content: center !important; /* Center the pagination items */
      list-style-type: none !important; /* Remove default list styles */
      padding: 0 !important;
      margin: 20px 0 !important;
    }
    
a:hover, a:active, a:focus {
    color: #0000C0;
    outline: none;
/*    font-weight: bold; */
}

.pagination a.active, .pagination a:active {
    background-color: darkgray;
    color: white;
  }
    
/* .pagination a:active {
     text-decoration: underline !important;
     border: none;
}
*/

.pagination a {
  display: flex !important;
  flex-wrap: wrap !important; /* Enable wrapping of pagination numbers */
  justify-content: center !important;    
  text-decoration: none !important;
  padding: 8px 8px !important;
  display: inline-block !important;
  /* text-decoration: underline !important; */
}


a:hover {
    color: #0056b3;
    text-decoration: none !important;
}

.pagination-text {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    display: inline-block;
}

 /* Centering images in grid */
    .centered-col {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Custom styles for small screens */
    @media (max-width: 768px) {
        /* Tablets */
        .centered-col {
            justify-content: center;
        }
    }
    
    /* Custom styles for small screens */
    @media (max-width: 534px) {
        /* Tablets */
        .centered-col {
            justify-content: center;
        }
    }
#readMoreLink {
  color: #008080;         /* Bootstrap primary blue */
  font-weight: 500;
  font-size: 0.8rem;
  text-decoration: none;
  cursor: pointer;
  margin-top: 6px;
  display: inline-block;
}
body.modal-open {
  padding-right: var(--scrollbar-width);
  overflow: hidden !important;
}
body.modal-open .navbar,
body.modal-open .nav-bar,
body.modal-open .container-fluid {
  padding-right: var(--scrollbar-width);
}
body.modal-open #gallery-section,
body.modal-open #gallery-section .row,
body.modal-open #pagination-section {
  padding-right: var(--scrollbar-width);
  transition: padding-right 0.3s ease;
}
.btn.btn-outline-primary.btn-sm {
  padding-top: 7px !important;
  padding-bottom: 7px !important;
  padding-left: 6px !important;
  padding-right: 14px !important;
  font-size: 1.0rem !important;
  border: none !important;
  background-color: #A0A2FE!important;
  color: white !important;
}
.btn.btn-secondary.btn-sm {
  padding-top: 0.39rem !important; 
  padding-bottom: 0.39rem !important; 
  padding-left: 12px !important; 
  padding-right: 11px !important; 
  font-size: 1.0rem !important;
}
.fa-share-nodes {
  padding-right: 4px;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    color: #058FCF;
    font-size: 1.1rem !important;
}
/*
    @media (max-width: 378px) {
        .centered-col {
            justify-content: center;
        }
        .gallery-image {
            padding-right: 0;
            padding-left: 0;
            max-width: 90%;
        }
    }
    */
.image-wrapper {
    position: relative;
    background-color: transparent !important;
}
.status-icon {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 34px !important;
    height: 34px !important;
    z-index: 2;
    pointer-events: none;
}
.modal-status-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 50px;
  height: 50px;
  z-index: 5;
  pointer-events: none;
}
/* .col-lg-4, .col-md-6 {
    min-height: 250px !important; 
}
*/