body {
  margin: 0;
}

/* Chatbot styles */
.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.chatbot {
  border: 1px solid #ccc;
  border-radius: 8px;
  max-width: 300px;
  min-width: 200px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.chat-header {
  background-color: #36AE7C;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}

.chat-messages {
  max-height: 200px;
  overflow-y: auto;
  padding: 10px;
}

.user-message, .bot-message {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.user-message {
  justify-content: flex-end;
}

.message-bubble {
  padding: 8px;
  border-radius: 8px;
  max-width: 70%;
}

.user-bubble {
  background-color: #36AE7C;
  color: white;
}

.bot-bubble {
  background-color: #f0f0f0;
  color: #333;
}
