Body Css
Body Css
background-color: #f9f9f9;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
.chat-container {
border-radius: 10px;
width: 300px;
background-color: white;
padding: 10px;
.chat-box {
height: 200px;
overflow-y: auto;
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"] {
padding: 10px;
border-radius: 5px;
button {
padding: 10px;
border: none;
background-color: #28a745;
color: white;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #218838;