/* Basic styling */
#chatbotContainer {
  display: none;
  position: fixed;
  bottom: 100px;
  left: 20px;
  width: 320px;
  max-height: 500px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  background: white;
  overflow: hidden;
  z-index: 1000;
  flex-direction: column;
}

#chatbotContainer.active {
  display: flex;
}

#chatbotHeader {
  background: #E30613;
  color: white;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chatbotBody {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background: #f9f9f9;
}

#chatbotFooter {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ccc;
}

#chatbotInput {
  flex: 1;
  padding: 8px;
}

#chatbotSend {
  padding: 8px;
  background: #E30613;
  color: white;
  border: none;
  cursor: pointer;
}

#chatbotButton {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #FBBF24;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 20px;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.chatbot-message {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.chatbot-message.user {
  justify-content: flex-end;
}

.chatbot-message.bot {
  justify-content: flex-start;
}

.chatbot-bubble {
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 70%;
}

.chatbot-bubble.user {
  background: #E30613;
  color: white;
}

.chatbot-bubble.bot {
  background: #eee;
}

.chatbot-avatar {
  margin: 0 8px;
}

.chatbot-avatar i {
  font-size: 20px;
}

.chatbot-option {
  background: #ccc;
  margin-top: 5px;
  padding: 5px 10px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
}