/* styles.css */


.controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thumbnail {
  flex: 1 1 calc(25% - 10px);
  box-sizing: border-box;
  transition: transform 0.3s;
  cursor: pointer;
}

.thumbnail img {
  width: 250px;
  display: block;
}

.thumbnail:hover {
  transform: scale(1.2);
}

.description {
  text-align: center;
  padding: 10px;
  background: #fff;
  width: 250px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination button {
  padding: 10px 20px;
  margin: 0 5px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

.pagination button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}







