[v-cloak] { display: none; }
* { box-sizing: border-box; }
body { margin: 0; font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif; background: #f5f7fa; }

/* 登录页 */
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.login-card { width: 380px; }
.login-title { text-align: center; margin: 0 0 20px; font-size: 20px; }
.login-btn { width: 100%; margin-top: 16px; }
.tip { color: #909399; font-size: 12px; text-align: center; margin: 14px 0 0; }

/* 布局 */
.layout { min-height: 100vh; }
.header { display: flex; align-items: center; justify-content: space-between;
  background: #001529; color: #fff; }
.header .logo { font-size: 17px; font-weight: 600; }
.el-aside { background: #fff; border-right: 1px solid #e4e7ed; }
.el-aside .el-menu { border-right: none; }
.toolbar { margin-bottom: 14px; display: flex; gap: 10px; }
.muted { color: #909399; font-size: 12px; }
.mono { font-family: Consolas, monospace; font-size: 12px; color: #606266; word-break: break-all; }

/* webhook info */
.info-pre { background: #f5f7fa; border: 1px solid #e4e7ed; border-radius: 6px;
  padding: 12px; font-size: 12px; max-height: 260px; overflow: auto; margin-top: 12px; }

/* 测试对话 */
.chat-box { height: 380px; overflow-y: auto; background: #f5f7fa; border-radius: 8px;
  padding: 14px; margin-bottom: 12px; }
.chat-msg { display: flex; margin-bottom: 12px; }
.chat-msg.user { justify-content: flex-end; }
.chat-msg .bubble { max-width: 78%; padding: 9px 13px; border-radius: 10px;
  font-size: 14px; line-height: 1.6; word-break: break-word; }
.chat-msg.user .bubble { background: #409eff; color: #fff; border-bottom-right-radius: 2px; }
.chat-msg.assistant .bubble { background: #fff; border: 1px solid #e4e7ed; border-bottom-left-radius: 2px; }
.chat-img { max-width: 260px; border-radius: 8px; display: block; }
.chat-input { display: flex; gap: 10px; }
.chat-input .el-input { flex: 1; }
