/* bot_chat_polish.css
 * 修复:
 *  1) 右下角浮窗 (64x64) 原 bottom:24px 会盖住 main 底部分页器"‹"按钮,
 *     上移 bottom->80px, 让出 main 底部 24-80px 区域给分页器/工具栏.
 *  2) 展开面板 .bc-panel 同步上移 bottom:100px->156px, 保持与 fab 相对位置.
 *  3) 配色统一到 design_tokens 的科技蓝 #4da3ff (原紫色 #4f46e5),
 *     消除 bot_chat 自己的紫色与收敛后主题不一致.
 *  选择器用 html:root #bot-chat-root ... 拉长链压过 bot_chat.css 的 #bot-chat-root ... .
 */
html:root #bot-chat-root .bc-fab {
  bottom: 80px !important;
  border-color: rgba(77, 163, 255, .4) !important;
}
html:root #bot-chat-root .bc-fab:hover {
  border-color: #4da3ff !important;
}
html:root #bot-chat-root .bc-fab svg,
html:root #bot-chat-root .bc-fab i,
html:root #bot-chat-root .bc-fab .bc-icon {
  color: #4da3ff !important;
}
html:root #bot-chat-root .bc-panel {
  bottom: 156px !important;
}
html:root #bot-chat-root .bc-send {
  background: #4da3ff !important;
  color: #0b0c0e !important;
}
html:root #bot-chat-root .bc-send:hover {
  background: #6ab8ff !important;
}
html:root #bot-chat-root .bc-user .bc-bubble {
  background: #4da3ff !important;
  color: #0b0c0e !important;
}