.chatbot-ai-agent-wrapper {
  width: 100%;
  margin: 0 auto;
}

.chatbot-ai-agent-shell {
  border: 1px solid #d7e4e0;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(15, 108, 91, 0.08), transparent 35%),
    linear-gradient(180deg, #f7fbfa 0%, #ffffff 100%);
  box-shadow: 0 24px 60px rgba(21, 35, 33, 0.08);
  overflow: hidden;
}

.chatbot-ai-agent-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid #e7efec;
}

.chatbot-ai-agent-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: #0f6c5b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chatbot-ai-agent-title {
  margin: 0;
  color: #16312b;
  font-size: 28px;
  line-height: 1.1;
}

.chatbot-ai-agent-subtitle {
  margin: 8px 0 0;
  color: #53716b;
  font-size: 14px;
}

.chatbot-ai-agent-status {
  padding: 12px 24px 0;
  color: #53716b;
  font-size: 13px;
}

.chatbot-ai-agent-status.is-error {
  color: #b42318;
}

.chatbot-ai-agent-mount {
  padding: 16px 16px 20px;
}

#chatbot-ai-agent-widget {
  display: block;
  width: 100%;
  height: var(--chatbot-ai-agent-height, 680px);
  min-height: 520px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
}

@media (max-width: 782px) {
  .chatbot-ai-agent-header {
    padding: 20px 18px 14px;
  }

  .chatbot-ai-agent-title {
    font-size: 24px;
  }

  .chatbot-ai-agent-status {
    padding: 10px 18px 0;
  }

  .chatbot-ai-agent-mount {
    padding: 12px;
  }

  #chatbot-ai-agent-widget {
    min-height: 480px;
    height: min(78vh, 680px);
  }
}

