.database-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
}

.page-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.page-button:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue);
}

.page-button:disabled {
  cursor: not-allowed;
  opacity: .4;
}
