.custom-pagination {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.custom-pagination .page-btn {
  border: 1px solid #17607a;
  background: #fff;
  color: #17607a;
  border-radius: 999px;
  padding: 1px 24px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
  box-shadow: 0 2px 8px rgba(23,96,122,0.04);
  letter-spacing: 0.05em;
}

.custom-pagination .page-btn.active,
.custom-pagination .page-btn:focus,
.custom-pagination .page-btn:hover {
  background: #17607a;
  color: #fff;
  border-color: #17607a;
  box-shadow: 0 4px 16px rgba(23,96,122,0.10);
}

.custom-pagination .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
} 