body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
.chat-container {
border: 1px solid #ccc;
border-radius: 10px;
width: 300px;
background-color: white;
padding: 10px;
.chat-box {
height: 200px;
overflow-y: auto;
border: 1px solid #ccc;
border-radius: 5px;
padding: 5px;
margin-bottom: 10px;
}
.chat-message {
margin: 5px 0;
.user {
text-align: right;
.bot {
text-align: left;
color: #555;
input[type="text"] {
width: calc(100% - 60px);
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
button {
padding: 10px;
border: none;
background-color: #28a745;
color: white;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #218838;