/* ========== Message输入框+SVG发送图标 修复版 ========== */
.Message {
  display: flex;
  align-items: center;
  gap:12px;
  margin:14px 0;
  padding:10px 14px;
  background:#40414f;
  border-radius:10px;
  box-shadow:5px 5px #34343f;
  width:100%;
  box-sizing: border-box;
  /* 容器也提升层级，防止被上层遮挡 */
  position: relative;
  z-index: 10;
}
.MsgInput {
  flex: 1 1 auto;
  background: transparent;
  border: none;
  outline:none;
  color:#fff;
  font-size:18px;
  padding:6px 4px;
  /* 强制修复被全局css禁用交互的问题 */
  pointer-events: auto !important;
  user-select: text !important;
  position: relative;
  z-index: 11;
}
.MsgInput::placeholder {
  color:#bbbbbb;
}
.SendSVG {
  width:30px;
  height:30px;
  cursor: pointer;
  flex-shrink:0;
  transition:0.2s;
  pointer-events:auto !important;
}
.SendSVG:hover g {
  fill:#ffffff;
}
