/* Chatbot container */
#chatbot-container {
  max-width: 527px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

/* Chat window */
.chat-window {
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  height: 500px;
  overflow: hidden;
}

/* Messages area */
#chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
}

/* Individual messages */
.message {
  margin: 8px 0;
  line-height: 1.4;
}

.message.user {
  text-align: right;
  color: #0073aa;
}

.message.bot {
  text-align: left;
  color: #333;
}

/* Input area */
.chat-input-area {
  display: flex;
  border-top: 1px solid #ddd;
  background: #fff;
}

#chat-input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  font-size: 14px;
}

#chat-send {
  padding: 10px 20px;
  border: none;
  background: #0073aa;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#chat-send:hover {
  background: #005f8a;
}
