/* Clean and embedded look for chatbot */
.atai-chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: none; /* hidden by default */
  width: 370px;
  height: 550px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* optional, remove if unwanted */
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
}

/* Remove all visual iframe borders */
.atai-chatbot-container iframe {
  width: 100%;
  height: 100%;
  border: none !important;
  outline: none !important;
  background: transparent;
}

/* Floating toggle button */
.atai-toggle-btn {
  background-color: white;
  width: 53px;
  height: 53px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  border-radius: 50%;
  border: 1px solid #004aad;
  padding: 3px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.atai-toggle-icon {
  width: 39px;
}
