/**
 * Shared Alert Component
 * Modern alert/notification styles
 */

.alert {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 0.9375rem;
}

/* Success - Green */
.alert-success {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

/* Danger/Error - Red */
.alert-danger,
.alert-error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* Warning - Orange */
.alert-warning {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid #fde68a;
}

/* Info - Blue */
.alert-info {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}
