#qawex-chat-container { position: fixed; bottom: 20px; right: 20px; z-index: 99999; font-family: sans-serif; }
#qawex-chat-launcher {
    width: 60px; height: 60px; background: #001f3f; color: #00ffcc;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 24px; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
#qawex-chat-box {
    position: absolute; bottom: 80px; right: 0; width: 320px; height: 450px;
    background: white; border-radius: 12px; display: flex; flex-direction: column;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); overflow: hidden;
}
.qawex-hidden { display: none !important; }
.qawex-chat-header { background: #001f3f; color: #00ffcc; padding: 15px; display: flex; justify-content: space-between; }
#qawex-chat-body { flex: 1; padding: 15px; overflow-y: auto; background: #f9f9f9; display: flex; flex-direction: column; gap: 10px; }
.msg { padding: 10px; border-radius: 8px; font-size: 14px; max-width: 80%; }
.bot { background: #eee; align-self: flex-start; }
.user { background: #001f3f; color: white; align-self: flex-end; }
.qawex-chat-input-area { display: flex; padding: 10px; border-top: 1px solid #ddd; }
#qawex-input-field { flex: 1; border: 1px solid #ccc; padding: 8px; border-radius: 4px; }
#qawex-send-action { background: #001f3f; color: #00ffcc; border: none; padding: 0 10px; margin-left: 5px; border-radius: 4px; cursor: pointer; }