.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.pagination-wrap .pagination {
  gap: 6px;
  margin: 0;
}

.pagination-wrap .page-link {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  border: 1px solid #e5e7eb;
  background: #fff;
  transition: .15s;
}

.page-dot {
  min-width: 24px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.pagination-wrap .page-link:hover {
  background: #f3f4f6;
  color: #111827;
}

.pagination-wrap .page-item.active .page-link {
  background: #0479CD;
  color: #fff;
  border-color: #0479CD;
  box-shadow: 0 2px 6px rgba(46, 168, 255, 0.35);
}

.pagination-wrap .page-item.disabled .page-link {
  color: #666;
  background: #f9fafb;
  border-color: #e5e7eb;
  pointer-events: none;
}

.pagination-wrap .page-link .bi {
  font-size: 16px;
  line-height: 1;
}
