/* 客服聊天窗口按钮修复 - 自动生成 */
/* 修复时间: $(date) */

/* 1. 修复图片按钮的伪元素问题 */
.customer-service .image-btn::after,
.customer-service .image-btn::before {
    content: none !important;
    display: none !important;
}

/* 2. 修复发送按钮的伪元素问题 */
.customer-service .send-btn::after,
.customer-service .send-btn::before {
    content: none !important;
    display: none !important;
}

/* 3. 清理所有按钮的伪元素 */
.chat-input button::after,
.chat-input button::before {
    content: none !important;
    display: none !important;
}

/* 4. 防止 $0 显示 */
.chat-input .image-btn,
.chat-input .send-btn {
    position: relative;
    overflow: hidden;
}

/* 5. 确保按钮内容正确显示 */
.chat-input .image-btn {
    font-size: 16px !important;
    line-height: 1 !important;
}

.chat-input .send-btn {
    font-size: 15px !important;
    line-height: 1 !important;
}

/* 6. 移除可能的调试代码 */
[class*="after=="],
[class*="$0"],
[id*="after=="],
[id*="$0"] {
    display: none !important;
}

/* 7. 特别处理emoji按钮 */
.chat-input .image-btn:empty::after {
    content: none !important;
}

/* 8. 确保按钮文本正确 */
.chat-input button {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
