.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pagination button {
  border: none;
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  padding: 8px 16px;
  font-size: 16px;
  transition: all 0.9s ease;
}

.pagination button:hover {
  background: linear-gradient(
    to bottom,
    rgb(0, 82, 150) 0%,
    rgb(0, 153, 255) 100%
  );
  color: #ffffff;
  background: linear-gradient(
    to bottom,
    rgb(0, 82, 150) 0%,
    rgb(0, 153, 255) 100%
  );
}

.pagination .active {
  background: linear-gradient(
    to bottom,
    rgb(0, 153, 255) 0%,
    rgb(0, 82, 150) 100%
  );
  color: #ffffff;
  background: linear-gradient(
    to bottom,
    rgb(0, 153, 255) 0%,
    rgb(0, 82, 150) 100%
  );
}

.nav-btn {
  font-size: 18px;
  font-weight: 600;
}

.page-btn.active {
  background: linear-gradient(
    to bottom,
    rgb(0, 153, 255) 0%,
    rgb(0, 82, 150) 100%
  );
  color: #ffffff;
}
