/* SalesPal pagination components */

.sp-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.sp-page-item {}

.sp-page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0.25rem 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.sp-page-link:hover {
  background: #f0f0f0;
  border-color: #ccc;
}

.sp-page-item.active .sp-page-link {
  background: #43B02A;
  color: white;
  border-color: #43B02A;
}

.sp-page-item.disabled .sp-page-link {
  color: #ccc;
  pointer-events: none;
  background: #fafafa;
}
