#chatbot-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  max-height: 450px;
  background: #fdfaf8;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(40, 27, 13, 0.6);
  display: none;
  z-index: 9999;
  overflow: hidden;
  font-family: sans-serif;
  flex-direction: column;
}


#chatbot-header {
  background: #281b0d;
  color: #f0e2d3;
  padding: 12px 16px;
  font-weight: bold;
}
#chatbot-close {
  float: right;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #f0e2d3;
}
#chatbot-close:hover {
  color: #f0e2d3;
}


#chatbot-messages {
  padding: 12px;
  height: 240px;
  overflow-y: auto;
}

.chatbot-message {
  margin-bottom: 10px;
}

.chatbot-message.bot {
  color: #281b0d;
}

.chatbot-message.user {
  text-align: right;
  color: #281b0d;
}

.chatbot-options {
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chatbot-options button {
  background: #f0e2d3;
  border: none;
  border-radius: 20px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.chatbot-options button:hover {
  background: #281b0d;
  color: #f0e2d3;
}
