@import url(//fonts.googleapis.com/css?family=Roboto+Slab:400,700,300|Roboto:400,700,300|Open+Sans:300italic,400italic,600italic,700italic,800italic,400,800,700,600,300);

.gallery-container {
  gap: 20px;
  justify-content: center;
  font-family: "Roboto Slab";
  font-weight: bold;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 20px;
}

.gallery-box {
  width: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  background-color: #fff;
  padding: 10px;
  transition: transform 0.3s;
}

.gallery-box:hover {
  transform: scale(1.05);
}

.gallery-box .thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.hidden-images {
  display: none;
}

.lb-image {
  max-width: 70vw !important;
  max-height: 80vh !important;
  object-fit: contain;
}
.thumbnail {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 10px;
  display: block;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.pagination a {
  text-decoration: none;
  background-color: #007bff;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  margin: 5px;
  transition: background-color 0.3s;
}

.pagination a:hover {
  background-color: #0056b3;
}

.pagination span {
  margin: 0 10px;
  font-weight: bold;
}
