/* CSS styles for the chatbot interface

/*chatbot_style_start*/

.typing-indicator {
    display: none;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
    padding-left: 10px;
}

.typing-indicator .dot {
    width: 8px;
    height: 8px;
    margin: 0 3px;
    background-color: #9e9ea7;
    border-radius: 50%;
    animation: typing-indicator 1.4s infinite ease-in-out;
}

.typing-indicator .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-indicator {

    0%,
    60%,
    100% {
        transform: initial;
    }

    30% {
        transform: translateY(-4px);
    }
}

.chatbot_btn {
    display: flex;
    justify-content: end;
    align-items: center;
    border: 1px solid #21308600;
    background: #fff;
    border-radius: 100px;
    padding: 0px 4px;
    box-shadow: 0px 0px 5px 0px #00000042;
    }


.send-btn {
    padding: 14px 14px;
    background-color: #213087;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    margin: 0;
    font-size: 15px;
    margin-right: 2px;
}

.chat-container {
    max-width: 400px;
    font-family: "Poppins", sans-serif;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
}

.chat-area {
    height: 380px !important;
    padding: 20px;
    background-color: #0c1028;
    overflow: auto;

}
.message {
    margin-bottom: 10px;
}

.user-message {
    background-color: #213087;
    border-radius: 10px;
    padding: 10px 15px;
    float: right;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-align: right;
}

.bot-message {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px 15px;
    line-height: 23px;
    float: left;
    font-size: 15px;
    font-weight: 500;
    color: #000000e8;
    text-align: left;
}

.input-container {
    padding: 20px 16px;
    background-color: #111111;
    border-top: 1px solid #fff0;
    border: none;
}

.input-field {
    width: calc(100% - 40px);
    padding: 14px;
    margin-right: 0;
    border-radius: 0;
    border: 1px solid #fff0;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: black;
    border-radius: 100px 0 0 100px;
}

.input-field:focus-visible {
    outline: none;
}

@media only screen and (max-width: 600px) {
    .chat-area {
        height: auto;
    }
}

/*chatbot_style_end*/
