.ai-chat-header-info strong::before {
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.ai-chat-header-info[data-chat-connection="connecting"] strong::before,
.ai-chat-header-info[data-chat-connection="offline"] strong::before {
  background: #8b949e;
  box-shadow: 0 0 0 2px rgba(139, 148, 158, 0.18), 0 0 7px rgba(139, 148, 158, 0.45);
}

.ai-chat-header-info[data-chat-connection="online"] strong::before {
  background: #35d06f;
  box-shadow: 0 0 0 2px rgba(53, 208, 111, 0.18), 0 0 9px rgba(53, 208, 111, 0.85);
}

.ai-chat-header-info small {
  min-height: 1.5em;
  transition: color 0.2s ease;
}

.ai-chat-header-info[data-chat-connection="offline"] small {
  color: rgba(255, 255, 255, 0.62);
}

.consult-nudge-bubble {
  font-weight: 400;
}

.ai-chat-bookmark-ai {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ai-chat-close,
.ai-chat-send {
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 1;
  text-align: center;
}

.ai-chat-close {
  flex: 0 0 auto;
  font-size: 0;
  line-height: 0;
  position: relative;
}

.ai-chat-close::before,
.ai-chat-close::after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: center;
  width: 12px;
}

.ai-chat-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.ai-chat-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
