Spaces:
Sleeping
Sleeping
File size: 915 Bytes
aeecdaf | 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 60 61 62 63 64 65 66 | body {
margin: 0;
font-family: Arial;
background: #0f1117;
color: white;
}
.chat-container {
width: 60%;
margin: auto;
margin-top: 30px;
background: #1a1d24;
border-radius: 10px;
overflow: hidden;
}
.chat-header {
background: #11131a;
padding: 15px;
text-align: center;
}
.chat-box {
height: 400px;
overflow-y: auto;
padding: 10px;
}
.message {
padding: 10px;
margin: 5px;
border-radius: 8px;
max-width: 70%;
}
.user {
background: #4a90e2;
margin-left: auto;
text-align: right;
}
.bot {
background: #2c2f3a;
margin-right: auto;
}
.input-area {
display: flex;
padding: 10px;
background: #11131a;
}
textarea {
flex: 1;
padding: 10px;
resize: none;
}
button {
padding: 10px;
margin-left: 10px;
background: #4a90e2;
color: white;
border: none;
cursor: pointer;
} |