body {
    font-family: Arial, sans-serif;
}
 
.chat-container {
    max-width: 600px;
    margin: 50px auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
}
 
.messages {
    height: 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
}
 
.message {
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
}
 
.message.user {
    background-color: #e0f7fa; /* Light blue for user messages */
}
 
.message.other {
    background-color: #ffe0b2; /* Light orange for other messages */
}