/* ===============================
   CARTOLAB CHATBOT
   =============================== */

#chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #3399ff;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-align: center;
  line-height: 56px;
  font-size: 24px;
  cursor: pointer;
  z-index: 9999;
}

#cartolab-chatbot {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

#chatbot-header {
  background: #3399ff;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
}

#chatbot-messages {
  padding: 10px;
  height: 260px;
  overflow-y: auto;
  font-size: 14px;
}

.chatbot-msg {
  margin-bottom: 8px;
}

.chatbot-user {
  text-align: right;
  color: #333;
}

.chatbot-bot {
  text-align: left;
  color: #000;
}

#chatbot-input {
  display: flex;
  border-top: 1px solid #ddd;
}

#chatbot-input input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
}

#chatbot-input button {
  background: #3399ff;
  color: #fff;
  border: none;
  padding: 0 15px;
  cursor: pointer;
}
