
/* ✅ Chat bubble size fix (不会影响功能，只修样式) */
.chat-modal *, .chat-box *, .chat-widget * { box-sizing: border-box; }

/* 常见泡泡 class 兜底：发“1”也不会变超大 */
.chat-modal .chat-bubble,
.chat-modal .bubble,
.chat-modal .msg,
.chat-modal .message,
.chat-modal .chat-msg,
.chat-modal .chat-item,
.chat-box .chat-bubble,
.chat-box .bubble,
.chat-box .msg,
.chat-box .message,
.chat-box .chat-msg,
.chat-box .chat-item{
  display:inline-block;
  max-width: 78%;
  padding: 6px 10px !important;
  border-radius: 14px !important;
  line-height: 1.25 !important;
  font-size: 13px !important;
  min-height: auto !important;
  min-width: 0 !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  white-space: pre-wrap !important;
}

/* 输入框不要被撑高 */
.chat-modal input[type="text"],
.chat-modal textarea{
  font-size: 14px !important;
  line-height: 1.25 !important;
}

/* 顶部 Online 标签更紧凑 */
.chat-modal .status,
.chat-modal .online,
.chat-modal .tag{
  font-size: 12px !important;
  padding: 2px 8px !important;
  border-radius: 999px !important;
}
