@charset "utf-8";
.rg-pagination {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.rg-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
}

.rg-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 40px;
  padding: 0 14px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  color: #111827;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.rg-page:hover {
  background: #f3f4f6;
}

.rg-page.is-active {
  background: #0ea5e9;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(14, 165, 233, 0.25);
}

.rg-page.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.rg-nav {
  min-width: auto;
}

.rg-ellipsis {
  padding: 0 6px;
  color: #6b7280;
  user-select: none;
}