/* ============================================================
   AI AGENT IA - Demo Chat Stylesheet
   ============================================================ */
/* Main chat styles are in style.css (.chat-widget, etc.)
   This file contains additional demo-specific overrides. */

.chat-widget.demo-full { height: 620px; }

.chat-body::-webkit-scrollbar { width: 6px; }
.chat-body::-webkit-scrollbar-track { background: transparent; }
.chat-body::-webkit-scrollbar-thumb { background: rgba(100,116,139,0.25); border-radius: 3px; }

.chat-initial-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 32px;
  color: var(--text-2);
}
.chat-initial-message .icon { font-size: 48px; margin-bottom: 16px; opacity: 0.5; }
.chat-initial-message h3 { color: var(--text); margin-bottom: 8px; }
.chat-initial-message p { font-size: 14px; max-width: 360px; }