.pager {
  margin: 18px 0 4px;
  padding: 4px 2px 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
}

.pager > a,
.pager > span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #d8e3f7;
  border-radius: 8px;
  background: #fff;
  color: #0f2747;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .05);
  transition: background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.pager > a:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #1d4ed8;
  box-shadow: 0 8px 18px rgba(37, 99, 235, .13);
}

.pager .active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
  box-shadow: 0 8px 18px rgba(37, 99, 235, .22);
}

.pager .pager-nav {
  min-width: 40px;
  padding: 0;
  color: #2563eb;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.pager .pager-nav.disabled {
  opacity: .45;
  color: #94a3b8;
  background: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: none;
}

.pager .pager-nav::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.pager .pager-prev::before {
  border-right: 9px solid currentColor;
}

.pager .pager-next::before {
  border-left: 9px solid currentColor;
}

.page {
  margin: 28px 0;
  text-align: center;
}

.page a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #bfdbfe;
  margin: 3px;
  border-radius: 16px;
  text-decoration: none;
  color: #2563eb;
  background: #fff;
}

.page a.active {
  background: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}
