/* SalesPal badge and alert components */

.sp-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 10px;
  line-height: 1;
  white-space: nowrap;
}

.sp-badge-primary {
  background: #dbeafe;
  color: #1e40af;
}

.sp-badge-success {
  background: #dcfce7;
  color: #166534;
}

.sp-badge-danger {
  background: #fee2e2;
  color: #991b1b;
}

.sp-badge-warning {
  background: #fef3c7;
  color: #92400e;
}

.sp-badge-info {
  background: #dbeafe;
  color: #1e40af;
}

.sp-badge-secondary {
  background: #f3f4f6;
  color: #6b7280;
}

.sp-badge-dark {
  background: #333;
  color: white;
}

/* Alerts */

.sp-alert {
  padding: 0.875rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.sp-alert-danger {
  color: #c62828;
  background: #ffebee;
}

.sp-alert-success {
  color: #2e7d32;
  background: #e8f5e9;
}

.sp-alert-warning {
  color: #e65100;
  background: #fff3e0;
}

.sp-alert-info {
  color: #1565c0;
  background: #e3f2fd;
}
