/* chatbot.css */
.sh-widget-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9999;
}

.sh-chat-box {
  width: 350px;
  max-height: 80vh;
  display: none;
  flex-direction: column;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.sh-input {
  font-size: 16px !important;
}

@media (max-width: 500px) {
  .sh-chat-box {
    width: 90vw;
    height: 100vh;
    bottom: 0;
    right: 0;
    border-radius: 0;
  }
}
