.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.pagination-link,
.pagination-ellipsis {
  display: inline-flex;
  padding: 8px 12px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: #1e67c6;
  text-decoration: none;
  font-weight: 500;
}

.pagination-link.current {
  background: #e9f1fd;
  color: #1e67c6;
  font-weight: 600;
  pointer-events: none;
  cursor: default;
}

.pagination-ellipsis {
  padding: 8px 12px;
  color: #aaa;
  border: none;
}