/* Status and error messages */
.muted {
  font-size: 12px;
  color: var(--text-muted);
}

.error {
  color: var(--error-color);
  font-size: 1rem;
  line-height: 1.75;
  padding: var(--space-md) var(--space-lg);
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--border-radius-sm);
  margin-top: var(--space-sm);
}

/* Status and thinking loader */
#status {
  font-size: 12px;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  min-height: 20px;
}

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid var(--focus-ring-strong);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

.status-text {
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 420px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#warning {
  background: var(--warning-bg);
  color: var(--warning-text);
  padding: var(--space-sm);
  border-radius: var(--border-radius-sm);
  font-size: 12px;
  margin-bottom: var(--space-md);
  border: 1px solid var(--warning-border);
}


