
#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  max-height: 500px;
  background: #ffffff;
  border: 2px solid #1e88e5;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-family: 'Segoe UI', sans-serif;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#chatbot-header {
  background-color: #1e88e5;
  color: white;
  padding: 12px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
#chatbot-reset {
  position: absolute;
  right: 10px;
  top: 8px;
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}
#chatbot-faqs {
  background: #f0f0f0;
  padding: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}
.faq-btn {
  background: #e3f2fd;
  border: 1px solid #90caf9;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
}
#chatbot-messages {
  padding: 10px;
  flex: 1;
  overflow-y: auto;
  background: #f4f4f4;
}
.chatbot-message {
  margin: 6px 0;
  padding: 6px 8px;
  background-color: #e1f5fe;
  border-radius: 8px;
  font-size: 14px;
}
.chatbot-message strong {
  color: #1565c0;
  display: block;
  margin-bottom: 3px;
}
#chatbot-input-area {
  display: flex;
  padding: 8px;
  background-color: #fafafa;
  border-top: 1px solid #ccc;
}
#chatbot-input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}
#chatbot-send {
  margin-left: 6px;
  padding: 8px 12px;
  background-color: #1e88e5;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
#chatbot-send:hover {
  background-color: #1565c0;
}
