
/* Chatbot floating button */
#chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 9999;
}

/* Chatbot window */
#chatbot-window {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  max-height: 400px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  z-index: 9998;
}

/* Header */
#chatbot-header {
  background-color: #007bff;
  color: #fff;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-weight: bold;
}

/* Messages */
#chatbot-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
}

/* Input */
#chatbot-input {
  display: flex;
  border-top: 1px solid #ddd;
}
#chatbot-input input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 14px;
}
#chatbot-input button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 0 15px;
  cursor: pointer;
}

/* WhatsApp Button */
#whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 9999;
}
#whatsapp-button:hover {
  background: #1ebe5d;
}
