/* ==========================================================================
   Web Chat Widget — extends the dialog flow UI with multi-turn AI styles
   ========================================================================== */

/* Info/system messages (errors, session expired, etc.) */
.web-chat-info {
  font-size: 11px;
  color: #6B7A72;
  text-align: center;
  padding: 8px 12px;
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: italic;
}

/* Typing indicator inside dialog chat — bot-bubble alignment */
.dialog-chat .typing-dots.web-chat-typing {
  align-self: flex-start;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  border-top-left-radius: 0;
}

/* Smooth scrolling for multi-turn conversation */
#dialogChat,
#sheetChat {
  scroll-behavior: smooth;
}

/* Disabled input/send during processing */
.dialog-input:disabled,
.dialog-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
