@charset "UTF-8";
/**
 * YH-UI Sass Variables
 * 原具体的 CSS 变量输出规则 (:root, html.dark 等) 已移至 root.scss，以防止各组件样式编译时产生重复的全局变量 CSS 冗余。
 */
.yh-ai-bubble-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-y: auto;
  position: relative;
  scroll-behavior: smooth;
}
.yh-ai-bubble-list__content {
  display: flex;
  flex-direction: column;
  padding: var(--yh-spacing-md);
  gap: var(--yh-spacing-md);
}

.yh-ai-bubble-list__virtual-phantom {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: -1;
}

.yh-ai-bubble-list__virtual-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding: var(--yh-spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--yh-spacing-md);
}

.yh-ai-bubble-list__loading {
  display: flex;
  justify-content: center;
  padding: var(--yh-spacing-md) 0;
}