Spaces:
Running
Running
File size: 868 Bytes
6e71a5c |
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 |
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f4f6f8;
}
.chat-container {
width: 100%;
max-width: 400px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
overflow: hidden;
display: flex;
flex-direction: column;
background-color: white;
}
.messages {
flex-grow: 1;
padding: 16px;
overflow-y: auto;
}
.message {
margin-bottom: 12px;
}
.message.user {
text-align: right;
color: #007bff;
}
.message.ai {
text-align: left;
color: #333;
}
#chat-form {
display: flex;
border-top: 1px solid #eee;
}
#user-input {
flex-grow: 1;
padding: 12px;
border: none;
border-top-left-radius: 8px;
}
button {
padding: 12px;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
} |