/* ✅ Chatbot Popup Message */
.chatbot-popup {
  position: fixed;
  bottom: 90px;
  right: 25px;
  background: #007bff;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
  animation: fadeIn 0.5s ease-in-out;
  z-index: 9999;
}
.chatbot-popup.hide {
  display: none;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ✅ Chatbot Icon */
.chatbot-icon {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #007bff;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
}

/* ✅ Chatbot Box */
#chatbox-container {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 300px;
  height: 400px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ccc;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
  flex-direction: column;
  z-index: 10000;
  overflow: hidden;
}
#chatbox-header {
  background: #007bff;
  color: white;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#chatbox-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
}
#chatbox-input {
  display: flex;
  border-top: 1px solid #ccc;
}
#chatbox-input input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
}
#chatbox-input button {
  background: #007bff;
  border: none;
  color: white;
  padding: 8px 12px;
  cursor: pointer;
}
