Spaces:
Sleeping
Sleeping
File size: 591 Bytes
0df7243 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
body {
font-family: Arial, sans-serif;
background-color: #f5f7fa;
padding: 20px;
}
.chat-container {
max-width: 600px;
margin: auto;
background: white;
padding: 20px;
border-radius: 8px;
}
.chat-box {
border: 1px solid #ccc;
padding: 10px;
max-height: 300px;
overflow-y: auto;
margin-bottom: 10px;
}
.user {
text-align: right;
color: #0066cc;
}
.bot {
text-align: left;
color: #333;
}
form {
display: flex;
gap: 10px;
}
input[type="text"] {
flex-grow: 1;
padding: 8px;
}
.entities {
margin-top: 20px;
}
|