/* Typing Indicator Component Styles */
.typing-indicator {
  display: none;
  align-items: center;
  gap: 5px;
  padding: 11px 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-bottom-left-radius: 6px;
  max-width: 78%;
  box-shadow: var(--shadow-sm);
}

.typing-indicator--show {
  display: inline-flex;
}

.typing-indicator__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: dotWave 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(108,92,231,0);
  transition: box-shadow 0.2s;
}

.typing-indicator__dot:nth-child(1) {
  animation-delay: 0.0s;
}

.typing-indicator__dot:nth-child(2) {
  animation-delay: 0.18s;
}

.typing-indicator__dot:nth-child(3) {
  animation-delay: 0.36s;
}
