|
|
|
|
|
body { |
|
font-family: Arial, sans-serif; |
|
background-color: #f0f0f0; |
|
margin: 0; |
|
padding: 0; |
|
} |
|
|
|
#chat-container { |
|
max-width: 400px; |
|
margin: 20px auto; |
|
background-color: #fff; |
|
border-radius: 10px; |
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); |
|
overflow: hidden; |
|
} |
|
|
|
#chat-header { |
|
background-color: #6cb2eb; |
|
color: #fff; |
|
padding: 15px; |
|
display: flex; |
|
align-items: center; |
|
} |
|
|
|
#llama-icon { |
|
width: 40px; |
|
height: 40px; |
|
margin-right: 10px; |
|
} |
|
|
|
#chat-header h1 { |
|
margin: 0; |
|
font-size: 24px; |
|
} |
|
|
|
#chat-history { |
|
padding: 15px; |
|
height: 300px; |
|
overflow-y: scroll; |
|
} |
|
|
|
#chat-input { |
|
padding: 15px; |
|
display: flex; |
|
align-items: center; |
|
background-color: #f5f5f5; |
|
} |
|
|
|
#user-input { |
|
flex: 1; |
|
padding: 10px; |
|
border: none; |
|
border-radius: 20px; |
|
margin-right: 10px; |
|
} |
|
|
|
#send-button { |
|
background-color: #6cb2eb; |
|
color: #fff; |
|
border: none; |
|
padding: 10px 20px; |
|
border-radius: 20px; |
|
cursor: pointer; |
|
transition: background-color 0.3s ease; |
|
} |
|
|
|
#send-button:hover { |
|
background-color: #4a8dc2; |
|
} |
|
|
|
.user-message { |
|
background-color: #e2f1fc; |
|
border-radius: 20px; |
|
padding: 10px 15px; |
|
margin-bottom: 10px; |
|
max-width: 70%; |
|
word-wrap: break-word; |
|
} |
|
|
|
.bot-message { |
|
background-color: #f5f5f5; |
|
border-radius: 20px; |
|
padding: 10px 15px; |
|
margin-bottom: 10px; |
|
max-width: 70%; |
|
word-wrap: break-word; |
|
} |
|
|