/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.echo_ai_user_input {
    color: #2b2828;
    margin-left: 40px;
    background: #a2ce59;
    padding: 15px;
    border: 1px solid aliceblue;
    border-radius: 25px;
    margin-bottom:5px;
}

.echo_ai_input {
    padding: 15px 10px;
    color: #2b2828;
    margin-right: 50px;
    background: #E9E2D0;
    border: 1px solid aliceblue;
    border-radius: 25px;
    word-wrap: break-word;
    margin-bottom:5px;
}
 .echo-ai-chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.echo-ai-chatbot-container {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 400px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
    z-index: 9999;
}

.echo-ai-chatbot-header {
    background: #4CAF50;
    color: white;
    padding: 10px;
    text-align: center;
}
.disclaimer-message{
        font-size: 11px;
    line-height: 1.5;
    padding: 5px 10px;
    background: #E9E2D0;
    color: #151515;
    font-weight: 400;
}
.disclaimer-message img{
    width: 20px;
    height: 20px;
}
.echo-ai-chatbot-messages {
    padding: 10px;
    height: 400px;
    overflow-y: auto;
    background: #f9f9f9;
}

.echo-ai-chatbot-input {
    display: flex;
    border-top: 1px solid #ccc;
    background: #E9E2D0;
}

.echo-ai-chatbot-input-field {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
}

.echo-ai-chatbot-send-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}

img.echo_id_chaticon
{

    padding : 10px;
}

button.chat-q-submit , button.chat-q-prev  {
    margin-top: 10px;
}


/* *************  Responsive CSS ************************ */
/* Chatboat Start Here */
@media only screen and (max-width: 576px) {
    .echo-ai-chatbot-container {
        right: 5%;
        width: 90%;
    }
    .echo-ai-chatbot-messages{
        height: auto;
        min-height: 50vh;
        max-height: 55vh;
    }
}
/* Chatboat End Here */

@media only screen and (max-width: 576px) {
    
    .echo-ai-chatbot-container { 
        right: 0px;
        width: 100%;
    }
    .echo-ai-chatbot-messages {
        padding: 10px;
        height: 260px;
    }
}

