#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#chatbot-toggle {
  width: 60px;
  height: 60px;
  background: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  font-size: 24px;
}

#chatbot-window {
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
}

#chatbot-window.hidden {
  display: none;
}

#chatbot-header {
  background: #007bff;
  color: white;
  padding: 15px;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chatbot-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  max-height: 350px;
}

.message {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 15px;
  max-width: 80%;
}

.user-message {
  background: #007bff;
  color: white;
  margin-left: auto;
  text-align: right;
}

.bot-message {
  background: #f1f1f1;
  color: #333;
}

#chatbot-input-container {
  display: flex;
  padding: 15px;
  border-top: 1px solid #eee;
}

#chatbot-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 20px;
  margin-right: 10px;
}

#chatbot-send {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
  cursor: pointer;
}
