/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.lwd-chatbot-section .chat-container {
    width: 100%;
/*   max-width: 400px;*/
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lwd-chatbot-section .chat-box {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.lwd-chatbot-section .message {
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: 70%;
    word-wrap: break-word;
}

.lwd-chatbot-section .bot-message {
    background-color: #e1ffc7;
    align-self: flex-start;
}

.lwd-chatbot-section .user-message {
    background-color: #d1e7fd;
    align-self: flex-end;
}

.lwd-chatbot-section .input-area {
    display: flex;
    border-top: 1px solid #ccc;
    padding: 10px;
}

.lwd-chatbot-section input[type="text"] {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 20px;
    outline: none;
    background-color: #f1f1f1;
    margin-right: 10px;
}

.lwd-chatbot-section button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    outline: none;
}

.lwd-chatbot-section button:hover {
    background-color: #0056b3;
}

.lwd-chatbot-section .message.bot-message {
    width: 100%;
    float: left;
}
.lwd-chatbot-section .message.user-message {
    float: right;
    width: 100%;
}
.lwd_bot_footer{
	text-align: center;
}
p.lwd-chatbot-header-txt {
    text-align: center;
}