.chat-container {
    max-width: 400px;
    margin: 20px auto;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}

.chat-box {
    height: 300px;
    overflow-y: scroll;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#user-input {
    width: 70%;
    padding: 8px;
    margin-top: 10px;
}

button {
    padding: 8px 15px;
    margin-top: 10px;
    cursor: pointer;
}
/* Style for bot messages */
.bot-message {
    color: blue; /* Set the text color to blue for bot messages */
}
