.bai-chat-instance {
  width: 100%;
  max-width: 100%;
  min-height: 320px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bai-chat-toolbar {
  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.bai-chat-new {
  appearance: none;
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #222;
  border-radius: 999px;
  padding: 7px 13px;
  font: inherit;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease;
}

.bai-chat-new:hover,
.bai-chat-new:focus-visible {
  background: #f6f6f6;
  border-color: #cfcfcf;
}

.bai-chat-component {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
}

.bai-chat-instance deep-chat {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .bai-chat-instance {
    height: min(76vh, 720px) !important;
    min-height: 520px;
  }
}
