
#chatbot-flutuante-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0073aa;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 30px;
  text-align: center;
  line-height: 60px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
}

#chatbot-flutuante-modal {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 360px;
  max-width: 90%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  overflow: hidden;
  z-index: 9999;
  display: none;
  flex-direction: column;
}

.chatbot-header {
  background: #0073aa;
  color: white;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chatbot-body {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.chatbot-messages {
  flex: 1;
  height: 200px;
  overflow-y: auto;
  border: 1px solid #ddd;
  padding: 8px;
  margin-bottom: 10px;
  font-size: 14px;
}

#chatbot-input {
  padding: 8px;
  font-size: 14px;
  width: calc(100% - 80px);
  display: inline-block;
}

#chatbot-send {
  padding: 8px 12px;
  background: #0073aa;
  color: white;
  border: none;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
}

.chatbot-hidden {
  display: none !important;
}
