body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

.chat-container {
  width: 400px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chat-header {
  background-color: #2196f3;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 1.2rem;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}

.message {
  display: inline-block;
  padding: 8px 12px;
  margin-bottom: 8px;
  border-radius: 5px;
  line-height: 1.4;
  word-wrap: break-word;
  max-width: 80%;
}

.user {
  background-color: #e6f3ff;
  color: #333;
  margin-left: auto;
  border-bottom-right-radius: 0;
}

.chatbot {
  background-color: #f5f5f5;
  color: #333;
  margin-right: auto;
  border-bottom-left-radius: 0;
}

.chat-footer {
  padding: 10px;
  background-color: #f5f5f5;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

#chat-form {
  display: flex;
}

#chat-input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

#send-button {
  background-color: #2196f3;
  color: #fff;
  border: none;
  padding: 8px 16px;
  margin-left: 8px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
}

#send-button:hover {
  background-color: #1a80d6;
}

.chatbot-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.chatbot-image {
  margin-right: 1rem;
}

.chatbot-description {
  font-size: 1.2rem;
}
