#chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #5a050e;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

#chatbot {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 260px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
}

#chat-header {
  background: #1f2937;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  border-radius: 10px 10px 0 0;
}

#chat-body {
  height: 160px;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
}

.bot {
  background: #e5e7eb;
  padding: 6px;
  border-radius: 6px;
  margin-bottom: 6px;
}

#chat-options button {
  width: 100%;
  padding: 8px;
  border: none;
  background: #133f07;
  color: white;
  cursor: pointer;
  margin-top: 4px;
}