#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* Circle button */
#chatbot-button {
  width: 60px;
  height: 60px;
  background: #C3020F;
  color: white;
  border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Chat box */
#chatbot-box {
  display: none;
  width: 300px;
  height: 400px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  position: absolute;
  bottom: 70px;
  right: 0;
  overflow: hidden;
}

/* Header */
#chat-header {
  background: #C3020F;
  color: white;
  padding: 10px;
  font-weight: bold;
}

/* Messages */
#chat-messages {
  height: 260px;
  overflow-y: auto;
  padding: 10px;
}

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

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

#chat-input-area button {
  background: #C3020F;
  color: white;
  border: none;
  padding: 10px;
}