#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-family: Arial, sans-serif;
  z-index: 9999;
}

#chat-icon {
  background: #007bff;
  color: white;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

#chat-window {
  width: 300px;
  height: 400px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: absolute;
  bottom: 60px;
  right: 0;
}

.hidden {
  display: none;
}

#chat-header {
  background: #007bff;
  color: white;
  padding: 10px;
  font-weight: bold;
}

#chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}

#chat-input {
  display: flex;
  border-top: 1px solid #ccc;
}

#user-input {
  flex: 1;
  border: none;
  padding: 10px;
}

#send-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}
