.chat-panel[data-channel] .chat-live-state.connected {
  color: #cbd3ff !important;
}

.chat-panel[data-channel] .chat-live-state.connected::before {
  background: #cbd3ff !important;
}

.chat-message {
  animation: chirp-chat-in 120ms ease-out;
}

@keyframes chirp-chat-in {
  from {
    opacity: 0;
    transform: translateY(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .chat-message {
    animation: none;
  }
}
