
#chatbot-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  border-radius: 50px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  padding: 5px 10px;
}
#chatbot-icon img {
  width: 30px;
}
#chatbot-container {
  font-family: sans-serif;
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background: #f9f1fd;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  z-index: 1000;
}
#chatbot-container.visible {
  display: flex;
}
#chat-header {
  background: #771cb0;
  color: white;
  font-weight: bold;
  padding: 10px;
  border-radius: 8px 8px 0 0;
}
#chat-log {
  height: 150px;
  overflow-y: auto;
  padding: 10px;
  font-size: 14px;
}
#user-input, #lead-name, #lead-email, #lead-message {
  margin: 5px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: calc(100% - 20px);
}
#send-btn, #submit-lead {
  margin: 5px;
  background: #771cb0;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
}
#lead-form {
  padding: 10px;
}
