.page-number.active {
  font-weight: bold;
  color: #fff;
}

.pagination {
  margin-top: 10px;
}

.pagination,
#pageNumbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.page-btn {
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #1f44bb;
  color: white;
  padding: 5px 16px;
  border-radius: 6px;
  border-bottom-color: #00196e;
  border-bottom-width: 4px;
  border-top: none;
  border-left: none;
  border-right: none;
}

.page-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #ffb907;
  /* border-bottom-width: 6px; */
}

.page-btn:active {
  border-bottom-width: 2px;
  filter: brightness(0.9);
  transform: translateY(2px);
}
