/* Custom pagination styles to match the provided design */
.pagination.pagination-custom {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}
.pagination.pagination-custom .page-item {
  display: flex;
}
.pagination.pagination-custom .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid #f2e9e6;
  background: #fff;
  color: #464444;
  font-weight: 600;
  font-size: 20px;
  transition: all 0.2s;
  box-shadow: none;
  outline: none;
  padding: 0;
}

.pagination.pagination-custom .page-link[aria-label] {
  font-size: 32px;
  line-height: 1;
  padding: 0 0 2px 0;
}

.pagination.pagination-custom .page-item.active .page-link {
  background: #e94a2f;
  color: #464444;
  border-color: #e94a2f;
}
.pagination.pagination-custom .page-link:focus,
.pagination.pagination-custom .page-link:hover {
  background: #f8f9fa;
  color: #e94a2f;
  border-color: #e94a2f;
}
