:host {
  display: block;
  width: 100%;
}

.ai-chat-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ai-chat-wrapper .loading-state {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 50px;
  position: relative;
  box-sizing: border-box;
}
.ai-chat-wrapper .ai-chat-container {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  background: var(--ux-color-background-default);
  border-radius: var(--ux-border-radius-large);
  margin: 0 auto;
  overflow: hidden;
  font-family: var(--ux-font, "Frutiger-Web"), sans-serif;
}
.ai-chat-wrapper .ai-chat-container .chat-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.ai-chat-wrapper .ai-chat-header {
  position: relative;
  width: 100%;
}
.ai-chat-wrapper .ai-chat-feedback-button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ai-chat-wrapper .empty-state {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--ux-color-text-secondary);
}
.ai-chat-wrapper .empty-state ux-icon {
  color: var(--ux-color-text-secondary);
}
.ai-chat-wrapper .error-state {
  color: var(--ux-color-error);
}
.ai-chat-wrapper .error-state ux-icon {
  color: var(--ux-color-error);
}
.ai-chat-wrapper .error-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.ai-chat-wrapper .disabled-chat {
  pointer-events: none;
  opacity: 0.7;
}
.ai-chat-wrapper .disclaimer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}