body {
  font-family: Arial, sans-serif;
}
.chatbot {
  z-index: 9999;
  position: fixed;
  bottom: 20px;
  left: 20px; /* Chatbot on the left side */
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: none;
  overflow: hidden;
  border: 1px solid #ddd;
}
.chat-header {
  background: #0084FF;
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  border-radius: 20px 20px 0 0;
}
.chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  height: 380px;
  display: flex;
  flex-direction: column;
}
.chat-input {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ddd;
  background: #f1f1f1;
}
.chat-input input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 15px;
  outline: none;
}
.chat-input button {
  background: #0084FF;
  color: white;
  border: none;
  padding: 10px 15px;
  margin-left: 5px;
  border-radius: 50%;
  cursor: pointer;
}
.chat-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px; /* Chatbot icon on the left */
  background: #0084FF;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10000;
}
.message {
  max-width: 70%;
  padding: 8px 12px;
  margin: 5px;
  border-radius: 15px;
  word-wrap: break-word;
}
.user-message {
  align-self: flex-end;
  background: #0084FF;
  color: white;
}
.bot-message {
  align-self: flex-start;
  background: #E4E6EB;
  color: black;
}