.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}

.pagination button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2d1d9;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  background-color: transparent;
  cursor: pointer;
  font-size: 16px;
  color: #040113;
  transition: all 0.5s ease;
}

.pagination button:hover {
  background: #f6f5f4;
  color: #040113;
  border-color: #d2d1d9;
}

.pagination .active {
  background: #040113;
  color: #ffffff;
  border-color: #040113;
}

.nav-btn {
  font-size: 18px;
  font-weight: 600;
}

.page-btn.active {
  background-color: #040113;
  color: #ffffff;
}
