/* chat.css — /chat page overrides (AI chat) */
/* Shared styles in 2-components/chat-base.css */

/* Widget styling (chat.js interactive widgets) */
.chat-widget {
  margin-top: 12px;
  animation: chatWidgetFadeIn 0.3s ease-in;
}

.chat-widget input:focus {
  outline: none;
  border-color: #C6FF00;
}

@keyframes chatWidgetFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}