/* Mobile-specific styles */

/* Adjust maximum width for mobile */
#chatbot {
  max-width: 250px;
  max-height: 300px;
}

/* Adjust font size and line height for better readability */
#chatbot {
  font-size: 14px;
  line-height: 1.5;
}

/* Adjust avatar size */
.chat-header img {
  width: 50px;
  height: 50px;
}

/* Increase padding and reduce margins */
.chat-header {
  padding: 10px;
}

.chat-container {
  padding: 10px;
}

/* Reduce top margin */
.user-input {
  margin-top: 10px;
}

/* Adjust button size and margins to fit within the chat window */
.user-input button {
  padding: 8px 12px; /* Adjust button padding */
  margin-left: 4px; /* Reduce left margin */
  margin-right: 4px; /* Reduce right margin */
}

/* Customize scrollbar appearance */
.chat-container::-webkit-scrollbar {
  width: 8px;
}

.chat-container::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.chat-container::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Adjust chat message styles */
.user-message,
.bot-message {
  max-width: 70%;
}
