.chat-wrapper {
  max-width: 500px;
  margin: 2rem auto;
  font-family: Arial, sans-serif;
}

#chat-container {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 500px;
  background: #f9f9f9;
}

#chat-messages {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 10px;
}

.message {
  padding: 8px 12px;
  border-radius: 15px;
  margin-bottom: 8px;
  max-width: 80%;
}

.user-message {
  background-color: #4a90e2;
  color: white;
  align-self: flex-end;
}

.bot-message {
  background-color: #e5e5ea;
  color: #333;
  align-self: flex-start;
}

.bot-message.error {
  background-color: #f28b82;
  color: white;
}

#chat-input-area {
  display: flex;
  gap: 10px;
}

#chat-input {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

#chat-send {
  padding: 10px 20px;
  border: none;
  background-color: #4a90e2;
  color: white;
  border-radius: 10px;
  cursor: pointer;
}

#chat-send:hover {
  background-color: #357ab8;
}
