Spaces:
Paused
Paused
File size: 851 Bytes
a617e9b c2dc6ec a617e9b c2dc6ec a617e9b c2dc6ec a617e9b c2dc6ec a617e9b c2dc6ec a617e9b c2dc6ec a617e9b c2dc6ec a617e9b c2dc6ec a617e9b | 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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | body {
background: #f4f6f9;
font-family: Arial, sans-serif;
}
.chat-container {
width: 450px;
margin: 40px auto;
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.chat-box {
height: 400px;
overflow-y: auto;
border: 1px solid #ddd;
padding: 10px;
border-radius: 8px;
background: #fafafa;
}
.message {
margin: 10px 0;
}
.user {
text-align: right;
color: #007bff;
}
.bot {
text-align: left;
color: #28a745;
}
.input-area {
display: flex;
margin-top: 15px;
}
input {
flex: 1;
padding: 10px;
border-radius: 6px;
border: 1px solid #ccc;
}
button {
padding: 10px 15px;
margin-left: 10px;
background: #007bff;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
}
|