#chatbot-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  max-height: 500px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  font-family: Arial, sans-serif;
  z-index: 9999;
}

#chatbot-header {
  background: #4f46e5;
  color: white;
  padding: 12px;
  font-weight: bold;
  text-align: center;
}

#chatbot-messages {
  padding: 10px;
  height: 300px;
  overflow-y: auto;
  font-size: 14px;
}

#chatbot-input-container {
  display: flex;
  padding: 10px;
  border-top: 1px solid #eee;
}

#chatbot-input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

#chatbot-send {
  background: #4f46e5;
  color: white;
  border: none;
  margin-left: 8px;
  border-radius: 8px;
  padding: 0 12px;
  cursor: pointer;
}

#chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4f46e5;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 10000;
}