.ai-chat-container {
  position: fixed;
  bottom: 0;
  right: 20px;
  max-width: 650px;
  z-index: 1000;
  width: 100%;
}

@media screen and (max-width: 690px) {
  .ai-chat-container {
    max-width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .ai-chat-container {
    bottom: 80px;

  }
}

@media screen and (max-width: 991px) {
  .ai-chat-container {
    z-index: 8;
  }
}

.ai-chat-header {
  background: #015DA9;
  color: white;
  padding: 12px 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.ai-chat-title {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 20px;
  height: 20px;
}

.ai-chat-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 8px;
  content: "";
  border-radius: 50%;
  background: #0bdd3b;
}

.ai-chat-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-chat-icon {
  width: 16px;
  height: 16px;
  filter: invert(1);
  transition: transform 0.3s ease;
  display: block;
}

.ai-chat-window {
  height: 0;
  opacity: 0;
  background: white;
  border-radius: 8px;
  margin-top: 8px;
  transition: opacity 0.3s ease;
}

@media screen and (max-width: 767px) {
  .ai-chat-window {
    display: none;
  }
}

.ai-chat-window.is-open {
  height: auto;
  opacity: 1;
  display: block;
}

.ai-chat-window deep-chat {
  height: 0;
  transition: height 0.3s ease;
  display: table-cell;
}

.ai-chat-window.is-open deep-chat {
  height: 55vh !important;
}

@media screen and (max-width: 767px) {
  .ai-chat-window.is-open deep-chat {
    height: 50vh !important;
  }
}
