
/* Scoped only to chatbot */
#webxsoft-chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #6c5ce7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

#webxsoft-chatbot-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 360px;
    max-height: 500px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 99999;
    font-family: Arial, sans-serif;
}

#webxsoft-chatbot-header {
    background: #6c5ce7;
    color: white;
    padding: 14px 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#webxsoft-chatbot-messages {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    font-size: 14px;
}

.webxsoft-msg {
    margin-bottom: 10px;
}

.webxsoft-user { text-align: right; }
.webxsoft-bot { text-align: left; }

#webxsoft-chatbot-input {
    display: flex;
    border-top: 1px solid #eee;
}

#webxsoft-chatbot-input input {
    flex: 1;
    border: none;
    padding: 12px;
    outline: none;
}

#webxsoft-chatbot-input button {
    background: #6c5ce7;
    border: none;
    color: white;
    padding: 0 18px;
    cursor: pointer;
}
