#ecare-chatbot-container {
    position: fixed;
    bottom: 110px;
    right: 20px;
    z-index: 9999;
}

.ecare-chatbot-button {
    background-color: #ffffff;
    color: white;
    padding: 10px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    line-height: 0;
}

.ecare-chatbot-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.chatbot-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px 40px 40px 40px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
}

.chatbot-close {
    /* position: absolute; */
    /* right: 16px;
    top: 8px; */
    font-size: 22px;
    cursor: pointer;
}
.text-close-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-messages {
    height: 250px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
    background: #f9f9f9;
    border-radius: 4px;
}

#chatbot-input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.chat-msg {
    margin: 6px 0;
}

.chat-msg.user {
    text-align: right;
    color: #0073aa;
}

.chat-msg.bot {
    text-align: left;
    color: #333;
}

.chatbot-form-container input, .chatbot-form-container select{
    color: #5a5a5a;
    font: inherit;
    margin: 0;
    width: 100%;
    padding: 5px;
    height: 40px;
    font-size: 14px;
    border: 2px solid #DEDEDE;
    border-radius: 5px;
    margin-bottom: 10px;
}

.chatbot-form-container input[type=submit]{
    padding: 10px 25px;
    background-color: #F4146A;
    color: #fff;
    border: 2px solid #F4146A;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    line-height: 0;
}