#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: "Open Sans", sans-serif;
}

.chatbot-btn {
  background-color: #8C1D40; /* Color vino institucional */
  border: none;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.chatbot-box {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  max-height: 500px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-header {
  background-color: #8C1D40; /* Color vino */
  color: white;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background-color: #f7f7f7;
}

.message {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 15px;
  max-width: 80%;
  word-wrap: break-word;
}

.user {
  background-color: #8C1D40; /* Color vino para mensajes del usuario */
  color: white;
  align-self: flex-end;
  margin-left: auto;
}

.bot {
  background-color: #e4e6eb;
  color: #333;
  align-self: flex-start;
}

.chatbot-input-area {
  display: flex;
  border-top: 1px solid #ddd;
}

.chatbot-input-area input {
  flex: 1;
  border: none;
  padding: 10px;
  outline: none;
}

.chatbot-input-area button {
  background-color: #8C1D40; /* Botón enviar con color vino */
  border: none;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
}
