/*
  默认主题 (Default Theme)
  - 黑白中性新拟态基线
  - 亮暗双模式
  - 已清理历史 Runtime Shell 迭代叠加覆盖，仅保留通用组件、模型回退提示与最终有效基线
*/

/* -------------------
 * A. 通用组件兼容层
 * ------------------- */

/* 全局样式重置 */

/* 去除 Tailwind 的 Ring 和 边框效果 */
[class*="hover\:ring-1"]:hover,
[class*="hover\:ring-primary-500"]:hover,
[class*="focus\:ring-2"]:focus,
[class*="focus\:ring-primary-600"]:focus,
[class*="ring-primary-500"] {
  --tw-ring-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* 覆盖原子化CSS和第三方库的默认样式 */
.bg-white {
  background-color: var(--theme-bg) !important;
}

.md-editor-preview {
  background-color: var(--theme-bg) !important;
  color: var(--theme-text) !important;
}

/* -------------------
 * 3. 基础样式 (Base Styles)
 * ------------------- */

body {
  background: var(--runtime-canvas-bg) !important;
  color: var(--theme-text) !important;
  background-attachment: fixed !important;
  min-height: 100vh !important;
  transition: none !important;
}

html.dark body {
  background: var(--runtime-canvas-bg) !important;
}

/* -------------------
 * 5. 聊天界面样式 (Chat Interface Styles)
 * ------------------- */

/* 聊天消息容器 */
.chat-message {
  display: flex !important;
  align-items: flex-start !important;
  margin-bottom: 20px !important;
  max-width: 85% !important;
}

/* 消息内容气泡 */
.message-content {
  padding: 15px 20px !important;
  border-radius: 15px !important;
  box-shadow: var(--shadow-convex) !important;
  background-color: var(--theme-bg) !important;
}

/* 用户消息 (右) */
.user-message {
  margin-left: auto !important;
  flex-direction: row-reverse !important;
}

.user-message .message-content {
  border-radius: 15px !important;
}

/* AI 消息 (左) */
.ai-message {
  margin-right: auto !important;
}

.ai-message .message-content {
  border-radius: 15px !important;
}

/* 聊天输入区域 */
.chat-input-area {
  display: flex !important;
  padding: 10px !important;
  margin: 10px !important;
  background-color: var(--theme-bg) !important;
  box-shadow: var(--shadow-concave) !important;
  border-radius: 15px !important;
}

.chat-input-area textarea {
  flex-grow: 1 !important;
  margin-right: 10px !important;
}

.chat-input-area button {
  flex-shrink: 0 !important;
}

/* 优化用户消息气泡 .rounded-2xl */
.rounded-2xl {
  background-color: var(--theme-bg) !important; /* 恢复背景以保证实体感 */
  color: var(--theme-text) !important;
  margin: 4px !important; /* 新增margin */
  box-shadow: var(--shadow-convex) !important; /* 应用凸起效果 */
  border: none !important; /* 确保无边框 */
}

/* AI消息气泡 .markdown-body 的新拟态样式 */
/* 警告：这是一个通用class，可能会影响页面其他元素。*/
.markdown-body {
  background-color: var(--theme-bg) !important;
  color: var(--theme-text) !important;
  padding: 1rem 1.5rem !important; /* 恢复内边距 */
  margin: 4px !important; /* 保留margin */
  border-radius: 15px !important;
  border: none !important;
  max-width: none !important; /* 移除最大宽度限制 */
  
  /* [CORRECTED] 使用凸起阴影，与用户气泡一致 */
  box-shadow: var(--shadow-convex) !important; 
}

/* 
   修复：当 .markdown-body 为空时，隐藏它。
   防止在加载过程中（文字尚未生成）显示空的阴影框。
*/
.markdown-body:empty {
    padding: 0 !important;
    margin: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    min-height: 0 !important;
}

/* 为特定的 markdown-body 组合类应用凹陷效果 */
.markdown-body.text-gray-600.dark\:text-gray-400.max-h-96.overflow-y-auto.overflow-x-hidden.custom-scrollbar {
  box-shadow: var(--shadow-concave) !important;
}

/* AI气泡中的代码块样式 */
.markdown-body .highlight pre,
.markdown-body pre {
  background-color: var(--theme-bg) !important; /* 使用更深的主题背景色 */
  color: var(--theme-text) !important;
  border-radius: 10px !important;
  padding: 1rem !important;
  border: none !important; /* 移除可能存在的边框 */
  
  box-shadow: var(--shadow-concave-shallow) !important;
  overflow: auto !important;
}

/* 为代码块定制新拟态滚动条 */
.markdown-body .highlight pre::-webkit-scrollbar,
.markdown-body pre::-webkit-scrollbar {
  width: 12px !important;
  height: 12px !important;
}

.markdown-body .highlight pre::-webkit-scrollbar-track,
.markdown-body pre::-webkit-scrollbar-track {
  background: transparent !important; /* 滚动条轨道透明，不干扰代码框的凹陷背景 */
}

.markdown-body .highlight pre::-webkit-scrollbar-thumb,
.markdown-body pre::-webkit-scrollbar-thumb {
  background: var(--theme-bg) !important;
  border-radius: 6px !important;
  box-shadow: var(--shadow-convex) !important;
}

.markdown-body .highlight pre::-webkit-scrollbar-thumb:hover,
.markdown-body pre::-webkit-scrollbar-thumb:hover {
  box-shadow: var(--shadow-flat) !important;
}

/* -------------------
 * 6. 二次元风格调整 (Anime Style Adjustments)
 * ------------------- */

.avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background-color: var(--theme-bg) !important;
  flex-shrink: 0 !important;
  border: 2px solid var(--theme-bg) !important;
  
  /* 应用呼吸动画 */
  animation: breathing-effect 4s ease-in-out infinite !important;
  
  /* 为所有交互添加平滑过渡 */
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* 悬停时：暂停呼吸，并“弹出” */
.avatar:hover {
  animation-play-state: paused !important; /* 暂停动画 */
  transform: scale(1.2) !important; /* 弹出 */
  box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #ffffff !important; /* 更强的凸起阴影 */
}

/* 暗色模式下的悬停效果 */
html.dark .avatar:hover {
  box-shadow: 5px 5px 10px #111111, -5px -5px 10px #313131 !important;
}

/* 点击时：在弹出的基础上“按入” - 修正缩放比例，改为缩小 */
.avatar:active {
  transform: scale(0.95) !important; /* 修正：按下时缩小，而不是放大 */
  box-shadow: var(--shadow-concave) !important; /* 应用凹陷阴影 */
}

/* --- 为通用卡片/容器应用新拟态效果 --- */

/* 1. 定义基础样式：移除边框，应用凸起效果 */
.rounded-lg[class*="shadow-sm"][class*="border-gray-200"] {
  /* 覆盖并移除原有样式 */
  border: none !important;
  background-color: var(--theme-bg) !important;
  
  /* 应用新拟态“凸起”效果 */
  box-shadow: var(--shadow-convex) !important;
  
  /* 添加平滑过渡 */
  transition: box-shadow 0.3s ease !important;

  /* 按要求添加 */
  
  transform: scale(0.99) !important;
}

/* 2. 定义悬停效果：变为“扁平” */
.rounded-lg[class*="shadow-sm"][class*="border-gray-200"]:hover {
  box-shadow: var(--shadow-flat) !important;
}

/* --- 调整通用标题样式：移除边框、添加内边距和圆角 --- */
.font-semibold.pb-2.border-b[class*="border-gray-200"] {
  border-bottom: none !important;
  padding: 10px !important;
  border-radius: 10px !important;
}

/* --- 为 ring-based 卡片应用新拟态效果 --- */
.rounded-lg[class*="ring-gray-200"][class*="dark:ring-gray-700"] {
  /* 直接禁用ring效果并覆盖背景 */
  --tw-ring-color: transparent !important;
  background-color: var(--theme-bg) !important;
  
  /* 应用新拟态凸起效果 */
  box-shadow: var(--shadow-convex) !important;
  transition: box-shadow 0.3s ease !important;
}
.rounded-lg[class*="ring-gray-200"][class*="dark:ring-gray-700"]:hover {
  box-shadow: var(--shadow-flat) !important;
}

/* --- 通用边框容器新拟态化 (最终增强版) --- */
.border[class*="dark:border-gray-700"] {
  /* 覆盖并移除原有样式 */
  border: none !important;
  background-color: var(--theme-bg) !important;
  /* 新增：强制移除渐变背景 */
  background-image: none !important;
  
  /* 应用新拟态“凸起”效果 */
  box-shadow: var(--shadow-convex) !important;
  
  /* 添加平滑过渡 */
  transition: box-shadow 0.3s ease !important;
}

/* 悬停效果 */
.border[class*="dark:border-gray-700"]:hover {
  box-shadow: var(--shadow-flat) !important;
}

/* --- 为可点击图片应用新拟态效果 (最终精准版) --- */

/* 1. 基础状态：凸起 */
img.rounded-lg.cursor-pointer.object-cover.max-w-md {
  box-shadow: var(--shadow-convex) !important;
  transition: box-shadow 0.2s ease, transform 0.2s ease !important;
}

/* 2. 悬停效果：变为扁平 */
img.rounded-lg.cursor-pointer.object-cover.max-w-md:hover {
  opacity: 1 !important;
  box-shadow: var(--shadow-flat) !important;
}

/* 3. 点击效果：凹陷 */
img.rounded-lg.cursor-pointer.object-cover.max-w-md:active {
  box-shadow: var(--shadow-concave) !important;
  transform: translateY(1px) !important;
}

/* --- 模型图标新拟态样式 --- */

/* 1. 基础状态：凸起 */
.w-8.h-8.rounded-full.flex-shrink-0[class*="bg-gray-200"] {
  background-color: var(--theme-bg) !important;
  border: none !important;
  box-shadow: var(--shadow-convex) !important;
  transition: box-shadow 0.2s ease, transform 0.2s ease !important;
}

/* 2. 悬停效果：扁平 */
.w-8.h-8.rounded-full.flex-shrink-0[class*="bg-gray-200"]:hover {
  box-shadow: var(--shadow-flat) !important;
}

/* 3. 点击效果：凹陷 */
.w-8.h-8.rounded-full.flex-shrink-0[class*="bg-gray-200"]:active {
  box-shadow: var(--shadow-concave) !important;
  transform: translateY(1px) !important;
}



/* --- 为flex-grow容器添加额外的内边距和圆角 --- */
.flex-grow.pt-4.border-t[class*="border-gray-200"] {
  padding: 10px !important;
  border-radius: 10px !important;
}

/* --- 代码块新拟态样式 (最终版 v2) --- */

/* 1. 外层容器：应用“凹陷”效果 */
.max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"] {
  box-shadow: var(--shadow-concave) !important;
  background-color: var(--theme-bg) !important;
  border: none !important;
  border-radius: 16px !important;
  margin: initial !important;
  padding: initial !important;
}

/* 2. 确保 wrapper 和 header 透明 */
.code-block-wrapper,
.code-block-header {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* 3. 真正的代码区：也应用“凹陷”效果 */
.hljs.code-content-scrollable {
  box-shadow: var(--shadow-concave) !important;
  background-color: var(--theme-bg) !important;
  border-radius: 12px !important;
  padding: 1rem !important;
}

/* --- 全局滚动条新拟态样式 (优化版) --- */

/* 1. 尺寸微调 */
::-webkit-scrollbar {
  width: 14px !important;
  height: 14px !important;
}

/* 2. 轨道样式 */
::-webkit-scrollbar-track {
  background-color: var(--theme-bg) !important;
  border-radius: 7px !important;
  box-shadow: var(--shadow-concave) !important;
  margin: 2px !important;
}

/* 3. 滑块样式 (增加过渡) */
::-webkit-scrollbar-thumb {
  background-color: var(--theme-bg) !important;
  border-radius: 7px !important;
  box-shadow: var(--shadow-convex) !important;
  border: 2px solid transparent !important;
  background-clip: content-box !important;
  /* 新增：为阴影变化添加平滑过渡 */
  transition: box-shadow 0.2s ease-out !important;
}

/* 4. 滑块悬停样式 */
::-webkit-scrollbar-thumb:hover {
  box-shadow: var(--shadow-flat) !important;
}

/* 5. 新增：滑块拖拽时变为“凹陷” */
::-webkit-scrollbar-thumb:active {
  box-shadow: var(--shadow-concave) !important;
}

/* --- 代码块内部组件样式修正 --- */

/* 1. 头部：移除边框，背景透明 */
.code-block-header {
  border: none !important;
  background-color: transparent !important;
}

/* 2. 代码区：背景透明，无独立阴影 */
.hljs.code-content-scrollable.code-container {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* --- 修正Markdown预览中“引用块”的样式 --- */
.md-editor-preview blockquote {
  /* 移除默认背景和边框 */
  background-color: transparent !important;
  border-left: none !important;

  /* 使用微妙的内阴影模拟左边框，更具新拟态风格 */
  box-shadow: inset 3px 0 0 0 var(--theme-primary) !important;
  
  /* 设置合适的间距 */
  padding: 0.5em 1.5em !important;
  margin: 1em 0 !important;
  
  /* 文字颜色使用主题的主色调，稍微区别于正文 */
  color: var(--theme-primary) !important;
}

/* --- 为主输入框应用持久“凹陷”效果 --- */
.input.input-md.w-full {
  /* 覆盖通用规则，强制应用凹陷阴影 */
  box-shadow: var(--shadow-concave) !important;
  
  /* 移除在通用规则中可能存在的 transform 效果 */
  transform: none !important;
  
  /* 确保背景和边框符合凹陷风格 */
  background-color: var(--theme-bg) !important;
  border: none !important;
  border-radius: 12px !important;

  /* 增加内边距，让文字有呼吸空间 */
  padding: 10px !important;
}

/* 当输入框被聚焦时，也保持凹陷效果，不产生形变 */
.input.input-md.w-full:focus {
  box-shadow: var(--shadow-concave) !important;
  transform: none !important;
}

/* --- 移除特定flex容器的新拟态效果 --- */
.flex.justify-between.items-center.pb-2.mb-2[class*="border-gray-200"] {
  /* 覆盖通用规则，强制改回透明背景和无阴影 */
  background-color: transparent !important;
  box-shadow: none !important;
}

/* --- 为“边框选中”的组件应用新拟态“凹陷”效果 --- */
.border-2[class*="border-primary-500"][class*="dark:border-primary-400"] {
  /* 移除边框和背景 */
  border: none !important;
  background-color: var(--theme-bg) !important;
  
  /* 应用凹陷阴影 */
  box-shadow: var(--shadow-concave) !important;
}

/* 悬停时保持凹陷状态不变 */
.border-2[class*="border-primary-500"][class*="dark:border-primary-400"]:hover {
  box-shadow: var(--shadow-concave) !important;
}

/* --- 全新拟态单选框样式 (基于方案A) --- */

/* 1. 隐藏原始的 radio input */
.w-4.h-4[class*="text-primary-600"] {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
}

/* 2. 找到 radio 旁边的文字容器 (span)，并为其创建伪元素 */
.w-4.h-4[class*="text-primary-600"] ~ span {
  position: relative !important;
  padding-left: 28px !important; /* 20px 按钮 + 8px 间距 */
  cursor: pointer !important;
  /* 确保文字垂直居中 */
  display: inline-flex !important;
  align-items: center !important;
  min-height: 20px !important;
}

/* 3. 创建“未选中”状态的“凹陷”圆环 (::before) */
.w-4.h-4[class*="text-primary-600"] ~ span::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: var(--theme-bg) !important;
  box-shadow: var(--shadow-concave) !important;
  transition: box-shadow 0.2s ease !important;
}

/* 4. 创建“选中”状态的“凸起”圆点 (::after) */
.w-4.h-4[class*="text-primary-600"] ~ span::after {
  content: '' !important;
  position: absolute !important;
  left: 5px !important; /* (20px - 10px) / 2 */
  top: 50% !important;
  transform: translateY(-50%) scale(0) !important; /* 默认隐藏 */
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: var(--theme-primary) !important;
  box-shadow: var(--shadow-convex) !important;
  transition: transform 0.2s ease-out !important;
}

/* 5. 当 radio 被选中时，显示“凸起”圆点 */
.w-4.h-4[class*="text-primary-600"]:checked ~ span::after {
  transform: translateY(-50%) scale(1) !important; /* 显示并放大 */
}

/* 6. 当 radio 被选中时，外环也可以有一个微妙的变化，变为扁平 */
.w-4.h-4[class*="text-primary-600"]:checked ~ span::before {
  box-shadow: var(--shadow-flat) !important;
}

/* --- 全局提示文字样式 (Placeholder) --- */
::-webkit-input-placeholder { /* Edge, Chrome, Safari */
  color: var(--theme-primary) !important;
  opacity: 0.6 !important;
}
::-moz-placeholder { /* Firefox 19+ */
  color: var(--theme-primary) !important;
  opacity: 0.6 !important;
}
:-ms-input-placeholder { /* IE 10+ */
  color: var(--theme-primary) !important;
  opacity: 0.6 !important;
}
::placeholder { /* Standard */
  color: var(--theme-primary) !important;
  opacity: 0.6 !important;
}

/* --- 为中等圆角按钮添加新拟态效果 --- */

/* 1. 基础状态：透明、无阴影 */
.rounded-md.cursor-pointer.group[class*="hover:bg-opacity"] {
  background-color: transparent !important;
  box-shadow: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

/* 2. 悬停效果：凸起 */
.rounded-md.cursor-pointer.group[class*="hover:bg-opacity"]:hover {
  box-shadow: var(--shadow-convex) !important;
  transform: translateY(-2px) !important;
}

/* 3. 点击效果：凹陷 */
.rounded-md.cursor-pointer.group[class*="hover:bg-opacity"]:active {
  box-shadow: var(--shadow-concave) !important;
  transform: translateY(1px) !important;
}

/* --- 修正代码块的包装器样式 --- */
.code-block-wrapper {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* --- 新拟态风格化右侧弹出面板 (编辑/图片预览) --- */
[class*="rounded-tl-2xl"][class*="rounded-bl-2xl"][class*="border-l"],
.image-previewer-container {
  /* 移除原生边框和阴影 */
  border: none !important;
  box-shadow: none !important; /* 先重置，再应用新的 */

  /* 统一背景色 */
  background-color: var(--theme-bg) !important;

  /* 应用一个更强烈的“凸起”阴影，使其看起来浮动在顶层 */
  box-shadow: 5px 5px 20px #babecc, -5px -5px 20px #ffffff !important;
}

/* 暗色模式下的面板阴影 */
html.dark [class*="rounded-tl-2xl"][class*="rounded-bl-2xl"][class*="border-l"],
html.dark .image-previewer-container {
  box-shadow: 5px 5px 20px #111111, -5px -5px 20px #313131 !important;
}



/* --- Markdown 内的表格新拟态样式 (v2) --- */

/* 1. 表格整体容器 */
.markdown-body table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important; /* 移除单元格间距 */
  background-color: var(--theme-bg) !important;
  border-radius: 15px !important;
  padding: 10px !important;
  box-shadow: var(--shadow-concave) !important; /* 整体凹陷 */
}

/* 2. 移除 th, td 的默认样式 */
.markdown-body th,
.markdown-body td {
  background-color: transparent !important;
  border: none !important;
  padding: 12px 15px !important;
  text-align: left !important;
  color: var(--theme-text) !important;
  box-shadow: none !important;
}

/* 3. 表头 (th) */
.markdown-body th {
  font-weight: 600 !important;
  color: var(--theme-primary) !important;
}

/* 4. 表格行 (tr) */
.markdown-body tr {
  border-radius: 10px !important;
  margin-bottom: 5px !important; /* 行间距 */
  display: table-row !important;
  background-color: var(--theme-bg) !important;
  box-shadow: var(--shadow-convex) !important; /* 行凸起 */
  transition: all 0.2s ease-in-out !important;
}

.markdown-body tr:hover {
  transform: scale(1.02) !important;
  box-shadow: var(--shadow-flat) !important;
}

/* 5. 单元格 (td) */
.markdown-body td {
  border-bottom: 1px solid var(--theme-bg) !important;
}

.markdown-body tr:last-child td {
  border-bottom: none !important;
}

/* 6. 圆角处理 */
.markdown-body tr:first-child th:first-child,
.markdown-body tr:first-child td:first-child {
  border-top-left-radius: 10px !important;
}

.markdown-body tr:first-child th:last-child,
.markdown-body tr:first-child td:last-child {
  border-top-right-radius: 10px !important;
}

.markdown-body tr:last-child td:first-child {
  border-bottom-left-radius: 10px !important;
}

.markdown-body tr:last-child td:last-child {
  border-bottom-right-radius: 10px !important;
}

/* Set width to 100% for the specified element */
.bg-transparent.border.border-gray-200.dark\:border-gray-400.px-1.shadow-none.flex-1.truncate {
  width: 100% !important;
}

/* Add margin-top to markdown-body paragraphs */
.markdown-body p {
  margin-top: 16px !important;
}

/* --- 插件卡片交互重构 (Invisible Toggle Overlay) --- */

/* 1. 卡片基础容器：凸起 */
.h-26.rounded-lg.group.font-medium {
  background-color: var(--sidebar-bg) !important;
  box-shadow: var(--shadow-convex) !important;
  border: 2px solid transparent !important; /* 预留边框位置，防止抖动 */
  transform: scale(0.9) !important;
  transform-origin: center top !important;
  position: relative !important;
  transition: all 0.2s ease !important;
}

/* 2. 将卡片内的开关改为全卡片覆盖层 (点击劫持) */
.h-26.rounded-lg.group.font-medium button[role="switch"] {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important; /* 视觉隐藏 */
  z-index: 20 !important; /* 置于顶层 */
  cursor: pointer !important;
  margin: 0 !important;
}

/* 3. 未激活状态 (Off) 交互 */
/* 悬停：变扁平 */
.h-26.rounded-lg.group.font-medium:not(:has(button[aria-checked="true"])):hover {
  box-shadow: var(--shadow-flat) !important;
  transform: scale(0.9) !important;
}
/* 点击：凹陷 */
.h-26.rounded-lg.group.font-medium:not(:has(button[aria-checked="true"])):active {
  box-shadow: var(--shadow-concave) !important;
  transform: scale(0.9) translateY(1px) !important;
}

/* 4. 激活状态 (On) 样式 - 放大 + 颜色加深阴影 */
/* 使用 :has() 检测：当内部开关被选中时 */
.h-26.rounded-lg.group.font-medium:has(button[aria-checked="true"]) {
  background-color: var(--sidebar-bg) !important;
  border: 2px solid transparent !important;
  
  /* 放大卡片 */
  transform: scale(0.95) !important; 
  
  /* 阴影范围保持较小 (5px)，但颜色显著加深 (0.4) */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4) !important;
  
  z-index: 10 !important;
}

/* 暗色模式下的深色阴影 */
html.dark .h-26.rounded-lg.group.font-medium:has(button[aria-checked="true"]) {
  /* 范围小，白色/亮色强度极高 */
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5) !important;
}

/* 激活状态悬停 */
.h-26.rounded-lg.group.font-medium:has(button[aria-checked="true"]):hover {
  transform: scale(0.96) !important;
  /* 悬停时稍微再深一点点 */
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5) !important;
}

html.dark .h-26.rounded-lg.group.font-medium:has(button[aria-checked="true"]):hover {
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6) !important;
}

/* 激活状态点击：微动反馈 (按下去一点) */
.h-26.rounded-lg.group.font-medium:has(button[aria-checked="true"]):active {
  transform: scale(0.94) !important;
  box-shadow: var(--shadow-convex) !important; /* 恢复普通阴影 */
}

/* 激活状态点击：微动反馈 */
.h-26.rounded-lg.group.font-medium:has(button[aria-checked="true"]):active {
  transform: scale(0.88) translateY(2px) !important; /* 略微再缩小一点点 */
}

/* --- 为“思考中”卡片添加顶部间距 --- */
.thinking-card-wrapper {
  margin-top: 10px !important;
}


/* --- 柔化 Markdown H2 标题的下边框 (更淡) --- */
.markdown-body h2 {
  /* 转换为带有透明度的颜色，使其更柔和 */
  border-color: rgba(90, 90, 90, 0.3) !important; 
}

html.dark .markdown-body h2 {
  border-color: rgba(169, 169, 169, 0.3) !important;
}



/* 5. 行的悬停效果 (已移除) */


/* --- 重置特定圆形按钮的样式 --- */
.rounded-full[class*="border-gray-200"] {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}




















.user-message .avatar {
  margin-left: 15px !important;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90">😎</text></svg>') !important;
}

.ai-message .avatar {
  margin-right: 15px !important;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90">😊</text></svg>') !important;
}

/* -------------------
 * 7. 侧边栏和布局 (Sidebar & Layout)
 * ------------------- */

/* 侧边栏整体容器：强化与右侧的分割 */
main.flex.flex-col.h-full.flex-1 {
  background-color: var(--sidebar-bg) !important;
  /* 向右投射一个微妙的阴影，形成物理分割感 */
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05) !important;
  z-index: 10 !important;
  position: relative !important;
  border-right: none !important;
}

html.dark main.flex.flex-col.h-full.flex-1 {
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3) !important;
}

/* 侧边栏头部优化 */
.flex.bg-opacity.w-full.justify-between.items-center.px-4.dark\:bg-gray-900.pt-3 {
  background-color: var(--sidebar-bg) !important;
  padding-bottom: 10px !important;
}

/* 侧边栏底部 (Footer) 优化 */
.p-4.pb-1.py-2.border-t-gray-100.dark\:border-t-gray-800 {
  border-top: none !important;
  background-color: var(--sidebar-bg) !important;
  /* 顶部添加一个微妙的凹槽感作为视觉分割 */
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02) !important;
  padding-top: 15px !important;
}

/* 折叠侧栏按钮及其他侧边栏微型操作按钮样式优化 */
.btn-icon-collapse,
.flex.flex-col.gap-3 button:not([role="switch"]) {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  color: var(--theme-primary) !important;
}

.btn-icon-collapse:hover,
.flex.flex-col.gap-3 button:not([role="switch"]):hover {
  background-color: transparent !important; /* 悬停时也保持透明，或者根据需要微调 */
  color: var(--theme-text) !important;
  transform: scale(1.1) !important; /* 简单的放大效果 */
}

.btn-icon-collapse:active,
.flex.flex-col.gap-3 button:not([role="switch"]):active {
  background-color: transparent !important;
  transform: scale(0.95) !important;
}

/* --- Logo 动态呼吸及交互效果 --- */

/* 1. 定义动画关键帧 (无变化) */
@keyframes breathing-effect {
  0%, 100% {
    transform: scale(1) !important;
    box-shadow: var(--shadow-convex) !important;
  }
  50% {
    transform: scale(1.05) !important;
    box-shadow: var(--shadow-flat) !important;
  }
}

/* 2. 将动画及所有交互效果应用到Logo上 */
.h-7.w-7.rounded-lg {
  /* 强制放大尺寸 */
  width: 30px !important;
  height: 30px !important;
  
  background-color: transparent !important; /* 改为透明背景 */
  animation: breathing-effect 4s ease-in-out infinite !important;
  
  /* 替换默认图片 - 亮色模式使用浅色路径图标 */
  content: url("https://registry.npmmirror.com/@lobehub/icons-static-png/latest/files/light/openai.png") !important;
  
  /* 为所有交互添加平滑过渡 */
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* 隐藏侧边栏标题 */
span.mx-auto {
  display: none !important;
}

/* 暗色模式下 LOGO 替换 - 使用深色路径图标 */
html.dark .h-7.w-7.rounded-lg {
  content: url("https://registry.npmmirror.com/@lobehub/icons-static-png/latest/files/dark/openai.png") !important;
}

/* --- 顶部/上下文 Logo 替换 (Top/Context Logo) --- */
/* 目标: <img alt="Logo" class="h-7 w-7 mr-2" ...> */
img.h-7.w-7.mr-2[alt="Logo"] {
  content: url("https://registry.npmmirror.com/@lobehub/icons-static-png/latest/files/light/openai.png") !important;
  width: 30px !important; /* 统一尺寸 */
  height: 30px !important;
  object-fit: contain !important;
}

html.dark img.h-7.w-7.mr-2[alt="Logo"] {
  content: url("https://registry.npmmirror.com/@lobehub/icons-static-png/latest/files/dark/openai.png") !important;
}

/* 3. 悬停时：暂停呼吸，并“弹出” */
.h-7.w-7.rounded-lg:hover {
  animation-play-state: paused !important; /* 暂停动画 */
  transform: scale(1.2) !important; /* 弹出 */
  box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #ffffff !important; /* 更强的凸起阴影 */
}

/* 暗色模式下的悬停效果 */
html.dark .h-7.w-7.rounded-lg:hover {
  box-shadow: 5px 5px 10px #111111, -5px -5px 10px #313131 !important;
}

/* 4. 点击时：在弹出的基础上“按入” */
.h-7.w-7.rounded-lg:active {
  transform: scale(1.15) !important; /* 按下时稍微缩小 */
  box-shadow: var(--shadow-concave) !important; /* 应用凹陷阴影 */
}

/* --- 侧边栏通用列表项交互效果 (更新版) --- */

/* 1. 定义通用列表项的基础状态：透明背景，无阴影 */
.rounded-lg.cursor-pointer.group {
  /* 强制背景透明，文字颜色跟随主题 */
  background-color: transparent !important;
  color: var(--theme-text) !important;
  
  /* 默认状态下移除任何可能存在的阴影 */
  box-shadow: none !important;

  /* 添加平滑过渡 */
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

/* 2. 通用悬停效果：应用“凸起”阴影 */
.rounded-lg.cursor-pointer.group:hover {
  position: relative !important; /* 确保 z-index 生效 */
  z-index: 9990 !important; /* 提升整个容器的层级 */
  box-shadow: var(--shadow-convex) !important; /* 应用凸起阴影，使其“浮起” */
  transform: translateY(-2px) !important; /* 向上移动一点，增强浮起感 */
  will-change: transform !important; /* 提示浏览器将发生 transform 变化 */
}

/* 3. 通用点击效果：应用“凹陷”阴影 */
.rounded-lg.cursor-pointer.group:active {
  box-shadow: var(--shadow-concave) !important;
  transform: translateY(1px) !important;
}


/* --- 为侧边栏“选中项”应用新拟态效果 --- */

/* 1. 定义“选中”状态的基础样式 */
.rounded-lg.cursor-pointer.group[class*="bg-gray-50"][class*="text-primary-600"],
.rounded-lg.cursor-pointer.group[class*="dark:bg-gray-700"][class*="dark:text-primary-400"] {
  /* 覆盖背景和文字颜色，使其融入主题 */
  background-color: var(--theme-bg) !important;
  color: var(--theme-primary) !important;

  /* 应用凹陷阴影，表示“选中”状态 */
  box-shadow: var(--shadow-concave) !important;

  /* 增加一个微妙的内缩效果，增强“按下”感 */
  transform: translateY(1px) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

/* 2. 定义悬停在“选中”项上时的样式 */
.rounded-lg.cursor-pointer.group[class*="bg-gray-50"][class*="text-primary-600"]:hover,
.rounded-lg.cursor-pointer.group[class*="dark:bg-gray-700"][class*="dark:text-primary-400"]:hover {
  /* 明确指令：悬停时，保持其凹陷阴影和内缩效果不变 */
  box-shadow: var(--shadow-concave) !important;
  transform: translateY(1px) !important;
}



/* -------------------
 * 8. 其他容器样式 (Other Container Styles)
 * ------------------- */

/* 大型圆角容器 */
div.rounded-3xl {
  /* 覆盖 Tailwind 边框和背景 */
  border: none !important;
  background-color: var(--theme-bg) !important;
  
  /* 应用凸起的新拟态样式 */
  box-shadow: var(--shadow-convex) !important;
  
  /* 确保覆盖 ring 效果 */
  --tw-ring-color: transparent !important;
}

/* 确保在指向和选中时保持凸起效果 */
div.rounded-3xl:hover,
div.rounded-3xl:focus-within {
  box-shadow: var(--shadow-convex) !important;
}

/* 为工具卡片容器添加顶部间距 */
.flex.flex-col.gap-1.tool-card-wrapper {
  margin-top: 10px !important;
}

/* 为具有滚动条的flex容器添加凹陷效果 */
.flex.flex-col.gap-1.max-h-96.overflow-y-auto.overflow-x-hidden.custom-scrollbar {
  box-shadow: var(--shadow-concave) !important;
  border-radius: 10px !important;
  margin: 10px !important;
  padding: 10px !important;
}

/* 为具有滚动条的文本容器添加凹陷效果 */
.text-gray-700.dark\:text-gray-300.max-h-96.overflow-y-auto.overflow-x-hidden.custom-scrollbar {
  box-shadow: var(--shadow-concave) !important;
  border-radius: 10px !important;
  margin: 10px !important;
  padding: 10px !important;
}

/* 聊天输入框的特殊处理：使其扁平化并融入父容器 */
textarea {
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 0 !important; /* 移除自定义内边距 */
  border-radius: 0 !important; /* 移除自定义圆角 */
  transform: none !important; /* 移除任何可能的形变 */
}

textarea:hover,
textarea:focus {
  box-shadow: none !important;
  transform: none !important;
}

/* -------------------
 * 9. 特定组件覆盖 (Specific Component Overrides)
 * ------------------- */

/* 隐藏页面底部的版权块 */
.bottom-0 {
  display: none !important;
}

/* 暗色模式下，覆盖特定的灰色背景为透明 */
html.dark .dark\:bg-gray-700 {
  background-color: transparent !important;
}

/* 去除 primary 文本强调色，使其跟随主题文本颜色 */
.text-primary-500,
.text-primary-600 {
  color: var(--theme-text) !important;
}

/* 为 px-20 工具类添加顶部内边距 */
.px-20 {
  padding-top: 1rem !important;
}

/* 移除 Tab 相关组件的背景色，使其透明 */
.tab.tab-md,
html.dark .tab-group,
.tab-group.tab-group-default {
  background-color: transparent !important;
}

/* 优化开关(toggle) - 实体轨道风格 (解决割裂感与可视性) */

/* 1. 轨道 (Track) - 第二个 span */
button[role="switch"] span:nth-child(2) {
  background-color: #e5e5e5 !important; /* 默认关闭：浅灰实体背景 */
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1) !important; /* 凹陷效果，增加深度 */
  border: none !important; /* 移除边框，消除割裂感 */
  opacity: 1 !important;
  height: 24px !important; /* 稍微加高 */
  width: 44px !important;
  border-radius: 9999px !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* 暗色模式下的轨道 (Off) */
html.dark button[role="switch"] span:nth-child(2) {
  background-color: #000000 !important; /* 纯黑背景，表现凹陷 */
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important; /* 极淡边框确保可见性，防止融入背景 */
}

/* 2. 滑块 (Thumb) - 第三个 span */
button[role="switch"] span:nth-child(3) {
  background-color: #ffffff !important; /* 亮模式：白色滑块 */
  border: none !important;
  /* 悬浮阴影，增加立体感 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 1px rgba(0,0,0,0.1) !important;
  height: 18px !important;
  width: 18px !important;
  top: 3px !important; /* 居中 (24-18)/2 */
  left: 3px !important;
  transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1), background-color 0.3s ease !important;
}

/* 暗色模式下的滑块 (Off) - 调暗，表示未激活 */
html.dark button[role="switch"] span:nth-child(3) {
  background-color: #6b7280 !important; /* 灰色滑块 */
  box-shadow: none !important; /* 去除阴影，使其看起来“熄灭” */
}

/* 3. 激活状态 (Active State) */

/* 轨道变色：使用主题文本色 (黑/白) */
button[role="switch"][aria-checked="true"] span:nth-child(2) {
  background-color: var(--theme-text) !important; /* 亮模式变黑，暗模式变白 */
  box-shadow: none !important; /* 激活时去除凹陷，显得更饱满 */
  border: none !important;
}

/* 暗色模式激活时，轨道变白 */
html.dark button[role="switch"][aria-checked="true"] span:nth-child(2) {
  background-color: #ffffff !important;
}

/* 滑块位移 */
button[role="switch"][aria-checked="true"] span:nth-child(3) {
  transform: translateX(20px) !important;
  background-color: #ffffff !important; /* 亮模式激活：保持白色 (轨道黑，滑块白) */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

/* 暗色模式下激活时，滑块变黑以对比白色轨道 */
html.dark button[role="switch"][aria-checked="true"] span:nth-child(3) {
  background-color: #000000 !important; /* 暗模式激活：滑块变黑 (轨道白，滑块黑) */
  box-shadow: none !important;
}

/* 隐藏无关背景层 */
button[role="switch"] span:nth-child(1) {
  display: none !important;
}

/* 隐藏旧的样式选择器 */
button[role="switch"] .bg-gray-200,
button[role="switch"] .dark\:bg-gray-700,
button[role="switch"] .bg-indigo-600,
button[role="switch"] .dark\:bg-indigo-600,
button[role="switch"] .transform,
button[role="switch"] .bg-white,
button[role="switch"] .dark\:bg-gray-500 {
}

/* 隐藏开关多余的背景层 */
button[role="switch"] .bg-white.dark\:bg-transparent {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* 优化输入框上方插件提示框的样式 (最终版) */
[class*="rounded-t-2xl"][class*="rounded-b-md"] {
  background-color: transparent !important; /* 按要求改为透明 */
  color: var(--theme-text) !important;
  
  /* 使用凸起阴影，使其效果更明显 */
  box-shadow: var(--shadow-convex) !important;
  
  border: none !important;
}

/* 修正 .text-gray-400 在浅色模式下的可读性问题 */
.text-gray-400 {
  color: var(--theme-text) !important;
}


/* -------------------
 * 10. 动画效果 (Animations)
 * ------------------- */

/* 定义打字和删除的动画 (优化版) */
/* 打字和删除动画 */
@keyframes typing-deleting-loop {
  0% { width: 0 }
  40% { width: 100% }
  60% { width: 100% }
  100% { width: 0 }
}

/* 为特定的h2标题应用打字机效果 (最终工作版 - 完全丝滑) */
h2.rounded.my-3.text-center.text-base.text-gray-600.dark\:text-gray-400 {
    display: inline-block !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    flex-basis: auto !important;
    margin: 2rem auto !important;
    letter-spacing: .15em !important;
    text-align: center !important; /* 文本居中 */
    animation: typing-deleting-loop 15s linear infinite !important; /* 优化: 完全丝滑，持续15s */
}

/* 强制为“选中”的对话项应用新拟态样式 (改为凸起) */
.rounded-lg.bg-white.text-primary-600,
html.dark .rounded-lg.dark\:bg-gray-800.dark\:text-white {
  background-color: transparent !important; /* 去掉背景色 */
  box-shadow: var(--shadow-convex) !important; /* 改为凸起效果 */
  color: var(--theme-primary) !important;
}

/* 确保选中的项目在指向时也保持凸起状态 */
.rounded-lg.bg-white.text-primary-600:hover,
html.dark .rounded-lg.dark\:bg-gray-800.dark\:text-white:hover {
    box-shadow: var(--shadow-convex) !important; /* 改为凸起效果 */
}

/* -------------------
 * 11. 弹出菜单样式 (Popup Menu Styles)
 * ------------------- */

/* 菜单容器 */
.menu-items {
  background-color: var(--theme-bg) !important;
  box-shadow: var(--shadow-convex) !important;
  border-radius: 15px !important;
  border: none !important;
  padding: 0.5rem !important;
  overflow: auto !important; /* 保持滚动 */
  z-index: 9999 !important; /* 提升层级，防止被覆盖 */
}

/* 菜单中的项目 */
.menu-items .menu-item {
  background-color: transparent !important;
  border-radius: 10px !important;
  padding: 0.75rem 1rem !important;
  color: var(--theme-text) !important;
  box-shadow: none !important;
  transition: box-shadow 0.15s ease-in-out, color 0.15s ease-in-out !important;
  margin: 0 !important;
  width: 100% !important;
}

.menu-items .menu-item:hover {
  box-shadow: var(--shadow-flat) !important;
  color: var(--theme-primary) !important;
}

/* 新拟态风格滚动条 */
.menu-items.custom-scrollbar::-webkit-scrollbar {
  width: 14px !important;
}

.menu-items.custom-scrollbar::-webkit-scrollbar-track {
  background-color: var(--theme-bg) !important;
  border-radius: 15px !important;
  box-shadow: var(--shadow-concave) !important;
  margin: 5px !important;
}

.menu-items.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--theme-bg) !important;
  border-radius: 10px !important;
  box-shadow: var(--shadow-convex) !important;
  border: 2px solid transparent !important;
  background-clip: content-box !important;
}

.menu-items.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  box-shadow: var(--shadow-flat) !important;
}

/* 优化暗色模式下的 primary-500 文本强调色 */
html.dark .dark\:text-primary-500 {
  color: var(--theme-primary) !important;
}

/* 优化加载中动画点的颜色 */
.loading-animation::before, 
.loading-animation::after, 
.loading-animation span {
  /* 将背景色改为主题的主色调 */
  background-color: var(--theme-primary) !important;
}

/* 日历中的普通日期按钮样式 */
.text-gray-900.dark\:text-gray-100.hover\:bg-gray-200.dark\:hover\:bg-gray-700.mx-auto.flex.h-8.w-8.items-center.justify-center.rounded-full {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transition: all 0.2s ease !important;
}

/* 悬停效果：凸起 */
.text-gray-900.dark\:text-gray-100.hover\:bg-gray-200.dark\:hover\:bg-gray-700.mx-auto.flex.h-8.w-8.items-center.justify-center.rounded-full:hover {
  background-color: var(--theme-bg) !important;
  box-shadow: var(--shadow-convex) !important;
  transform: translateY(-1px) !important;
}

/* 点击效果：凹陷 */
.text-gray-900.dark\:text-gray-100.hover\:bg-gray-200.dark\:hover\:bg-gray-700.mx-auto.flex.h-8.w-8.items-center.justify-center.rounded-full:active {
  box-shadow: var(--shadow-concave) !important;
  transform: translateY(1px) !important;
}

/* 日期显示中的当天日期 (Current Day in Date Display) */
.bg-primary-600.text-white.hover\:bg-gray-200.dark\:hover\:bg-gray-700.mx-auto.flex.h-8.w-8.items-center.justify-center.rounded-full {
  background-color: var(--theme-bg) !important;
  color: var(--theme-text) !important;
  box-shadow: var(--shadow-concave) !important; /* 凹陷表示“选中/当天” */
  border: 1px solid var(--theme-primary) !important; /* 添加一个边框来强调 */
  /* 确保移除 Tailwind 的 hover 效果，保持新拟态 */
  --tw-bg-opacity: 1 !important;
  --tw-text-opacity: 1 !important;
}

/* 悬停时保持凹陷效果 */
.bg-primary-600.text-white.hover\:bg-gray-200.dark\:hover\:bg-gray-700.mx-auto.flex.h-8.w-8.items-center.justify-center.rounded-full:hover {
  background-color: var(--theme-bg) !important;
  color: var(--theme-text) !important;
  box-shadow: var(--shadow-concave) !important;
}

/* Center the date buttons within their parent div */
div[data-v-6ee55085].py-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
/*
  Neumorphic style for the specific button class.
  Targets: .flex.items-center.bg-white.dark:bg-gray-800... etc.
*/
.flex.items-center.bg-white.dark\:bg-gray-800.hover\:bg-opacity.py-2.px-2.dark\:hover\:bg-gray-700.rounded-2xl.w-full.cursor-pointer.duration-150.ease-in-out {
  max-width: 99% !important;

  /* Neumorphic base styles */
  background: var(--theme-bg) !important;
  border: 1px solid transparent !important; /* 隐藏原始边框 */
  box-shadow: var(--shadow-convex) !important;
  transition: all 0.15s ease-in-out !important;
}

.flex.items-center.bg-white.dark\:bg-gray-800.hover\:bg-opacity.py-2.px-2.dark\:hover\:bg-gray-700.rounded-2xl.w-full.cursor-pointer.duration-150.ease-in-out:hover {
  /* 悬停时，按钮略微抬起 */
  transform: translateY(-1px);
  box-shadow: var(--shadow-flat) !important;
}

.flex.items-center.bg-white.dark\:bg-gray-800.hover\:bg-opacity.py-2.px-2.dark\:hover\:bg-gray-700.rounded-2xl.w-full.cursor-pointer.duration-150.ease-in-out:active {
  /* 点击时，按钮呈现按下效果 */
  transform: translateY(1px);
  box-shadow: var(--shadow-concave) !important;
}

/* Hide specific text element */
.text-base.text-gray-400.dark\:text-gray-400.flex-grow.truncate {
  display: none !important;
}

/* -------------------
 * 12. 侧边栏特定区域修正 (Sidebar Specific Fixes)
 * ------------------- */

/* 修复侧边栏滚动容器背景，覆盖 .h-full 的影响 */
.custom-scrollbar.px-4.overflow-y-auto.h-full:has(> .flex.flex-col.gap-3.text-sm) {
  background-color: var(--sidebar-bg) !important;
  min-height: 100% !important;
  box-shadow: inset -1px 0 0 0 rgba(0,0,0,0.02) !important;
  position: relative !important;
  isolation: isolate !important;
  overscroll-behavior-y: none !important;
  overscroll-behavior-x: none !important;
  touch-action: pan-y !important;
  overflow-anchor: none !important;
  scroll-padding-top: 168px !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

[data-runtime-static-section-header="true"],
[data-history-section-header="true"] {
  display: none !important;
}

p[data-runtime-history-date-heading="true"],
div.custom-scrollbar [data-runtime-history-date-heading="true"],
div.flex.flex-col.gap-3.text-sm [data-runtime-history-date-heading="true"] {
  display: block !important;
  margin: 3px 0 1px !important;
  padding-left: 0 !important;
  font-size: 10px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  color: var(--runtime-sidebar-heading-color, #111111) !important;
  opacity: 1 !important;
  pointer-events: none !important;
  user-select: none !important;
}

html.dark [data-runtime-history-date-heading="true"] {
  color: var(--runtime-sidebar-heading-color, #f3f3f3) !important;
  opacity: 1 !important;
}

/* 强制清理侧边栏列表项的背景颜色，使其透明，露出侧边栏背景 */
.flex.flex-col.gap-3 .relative.flex.items-center.gap-3 {
  background-color: transparent !important;
  border: 1px solid transparent !important; /* 关键：预留1px透明边框，防止选中时出现布局跳动 */
  margin-bottom: 4px !important;
  transition: all 0.2s ease !important;
  outline: none !important; /* 强制移除聚焦轮廓 */
}

/* 专门针对深色模式下可能存在的背景残留进行清除 */
html.dark .flex.flex-col.gap-3 .relative.flex.items-center.gap-3.dark\:bg-gray-900,
html.dark .flex.flex-col.gap-3 .relative.flex.items-center.gap-3.dark\:bg-gray-800 {
  background-color: transparent !important;
  border: 1px solid transparent !important;
}

/* 侧边栏标题样式优化 */
.flex.flex-col.gap-3 .text-xs.font-bold {
  color: var(--runtime-sidebar-heading-color, #111111) !important;
  padding-left: 0 !important;
  margin-bottom: 8px !important;
  opacity: 1 !important;
}

/* 选中项样式强化 (改为清晰的凸起效果) */
/* 亮色模式选中项 - 背景 #F7F7F7 */
.flex.flex-col.gap-3 .relative.flex.items-center.gap-3.bg-white.text-primary-600 {
  background-color: var(--sidebar-bg) !important;
  /* 均匀阴影：范围减小，颜色加深 */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) !important;
  color: var(--theme-primary) !important;
  transform: none !important;
  border: 1px solid transparent !important; /* 修正：保留1px边框占位，防止切换时抖动 */
}

/* 暗色模式选中项 - 背景 #1A1A1A */
html.dark .flex.flex-col.gap-3 .relative.flex.items-center.gap-3.dark\:bg-gray-800.dark\:text-white {
  background-color: var(--sidebar-bg) !important;
  /* 均匀阴影：折中强度 */
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.22) !important;
  color: var(--theme-primary) !important;
  transform: none !important;
  border: 1px solid transparent !important; /* 修正：保留1px边框占位 */
}

/* 列表项悬停效果：凸起 */
.flex.flex-col.gap-3 .relative.flex.items-center.gap-3:not(.bg-white):not(.dark\:bg-gray-800):hover {
  box-shadow: var(--shadow-convex) !important;
  background-color: var(--sidebar-bg) !important;
  transform: translateY(-1px) !important;
  z-index: 5 !important;
  border-color: transparent !important; /* 悬停时不显示边框 */
}

/* 列表项交互终极修正：锁定状态，禁止一切抖动 */
.flex.flex-col.gap-3 .relative.flex.items-center.gap-3:active,
.flex.flex-col.gap-3 .relative.flex.items-center.gap-3:focus,
.flex.flex-col.gap-3 .relative.flex.items-center.gap-3:focus-within {
  outline: none !important;
  --tw-ring-color: transparent !important;
  box-shadow: var(--shadow-convex) !important; /* 始终保持凸起，不闪烁 */
  background-color: var(--sidebar-bg) !important;
  transition: none !important; /* 禁用过渡 */
}

/* 未选中项点击时：保持悬停态的位置 (-1px) */
.flex.flex-col.gap-3 .relative.flex.items-center.gap-3:not(.bg-white):not(.dark\:bg-gray-800):active,
.flex.flex-col.gap-3 .relative.flex.items-center.gap-3:not(.bg-white):not(.dark\:bg-gray-800):focus {
  transform: translateY(-1px) !important;
  border-color: transparent !important;
}

/* 选中项点击时：保持原位 (0px) 和边框 */
.flex.flex-col.gap-3 .relative.flex.items-center.gap-3.bg-white:active,
.flex.flex-col.gap-3 .relative.flex.items-center.gap-3.bg-white:focus,
html.dark .flex.flex-col.gap-3 .relative.flex.items-center.gap-3.dark\:bg-gray-800:active,
html.dark .flex.flex-col.gap-3 .relative.flex.items-center.gap-3.dark\:bg-gray-800:focus {
  transform: none !important;
  border: 1px solid rgba(0,0,0,0.05) !important;
}
html.dark .flex.flex-col.gap-3 .relative.flex.items-center.gap-3.dark\:bg-gray-800:active,
html.dark .flex.flex-col.gap-3 .relative.flex.items-center.gap-3.dark\:bg-gray-800:focus {
  border: 1px solid rgba(255,255,255,0.05) !important;
}

/* 图标颜色适配 */
.flex.flex-col.gap-3 .i-icon {
  color: var(--theme-primary) !important;
  opacity: 0.8 !important;
}

/* -------------------
 * 13. 侧边栏操作菜单修正 (Sidebar Menu Fixes)
 * ------------------- */



/* 修复侧边栏右侧操作按钮容器的背景，使其透明 */
/* 即 class="absolute z-10 right-2 flex items-center h-full" */
.absolute.z-10.right-2.flex.items-center.h-full {
  background-color: transparent !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] :is(
  div.custom-scrollbar.px-4.overflow-y-auto.h-full,
  div.custom-scrollbar.flex.flex-col.gap-3.px-4.py-1.overflow-y-auto.h-full,
  div.flex.flex-col.gap-3.text-sm
) .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer > .absolute.z-10.right-2.flex.items-center.h-full,
body[data-runtime-shell-ready="true"] :is(
  div.custom-scrollbar.px-4.overflow-y-auto.h-full,
  div.custom-scrollbar.flex.flex-col.gap-3.px-4.py-1.overflow-y-auto.h-full,
  div.flex.flex-col.gap-3.text-sm
) .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer > .menu.relative,
body[data-runtime-shell-ready="true"] :is(
  div.custom-scrollbar.px-4.overflow-y-auto.h-full,
  div.custom-scrollbar.flex.flex-col.gap-3.px-4.py-1.overflow-y-auto.h-full,
  div.flex.flex-col.gap-3.text-sm
) .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer [aria-label*="删除"],
body[data-runtime-shell-ready="true"] :is(
  div.custom-scrollbar.px-4.overflow-y-auto.h-full,
  div.custom-scrollbar.flex.flex-col.gap-3.px-4.py-1.overflow-y-auto.h-full,
  div.flex.flex-col.gap-3.text-sm
) .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer [aria-label*="操作"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* 弹出菜单容器 (.menu-items) */
/* 需要更高优先级覆盖内联样式或默认样式 */
div.menu-items,
.menu-items.custom-scrollbar.menu-items-bottom {
  background-color: var(--theme-bg) !important; /* 强制主题背景色 */
  /* 均匀阴影 */
  box-shadow: 0 0 10px rgba(0,0,0,0.2) !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 6px !important;
  opacity: 1 !important; /* 强制不透明 */
  z-index: 100 !important; /* 确保在最上层 */
}

/* 暗色模式下的菜单阴影修正 */
html.dark div.menu-items,
html.dark .menu-items.custom-scrollbar.menu-items-bottom {
  /* 均匀浅色发光阴影 */
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.22) !important;
}

/* 菜单项 (.menu-item) */
.menu-item.menu-item-md {
  background-color: transparent !important;
  color: var(--theme-text) !important;
  border-radius: 8px !important;
  margin-bottom: 2px !important;
  transition: all 0.2s ease !important;
}

/* 菜单项悬停效果 */
.menu-item.menu-item-md:hover {
  background-color: var(--theme-bg) !important;
  box-shadow: var(--shadow-flat) !important; /* 扁平化 */
  color: var(--theme-primary) !important;
  transform: translateX(2px) !important;
}

/* 基础模型显示按钮 - 背景透明 */
button.btn.btn-pill.mb-2.w-full.h-9 {
  background-color: transparent !important;
  box-shadow: var(--shadow-convex) !important;
  color: var(--theme-primary) !important;
}

/* -------------------
 * 15. 特定按钮修正 (Specific Button Fixes)
 * ------------------- */

/* 修复第三个工具按钮 (i-icon-all-application) 尺寸过大的问题 */
/* 该元素本身是一个span，不是button，可能受到了字体大小或line-height影响 */
span.i-icon.i-icon-all-application.btn-icon.btn-md {
  display: inline-flex !important;
  width: 39.6px !important;
  height: 39.6px !important;
  min-width: 39.6px !important;
  max-width: 39.6px !important;
  padding: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  box-sizing: border-box !important;
  /* 确保不受字体影响 */
  font-size: 0 !important; 
  line-height: 0 !important;
}

/* 确保 SVG 尺寸一致 - 用户指定修正为 18px */
span.i-icon.i-icon-all-application.btn-icon.btn-md svg {
  width: 18px !important;
  height: 18px !important;
}

/* --- 设备预览/代码编辑工具栏修复 (Device Preview Tabs Restoration) --- */

/* 1. 恢复横向布局 */
.tab-group.tab-group-default:has([aria-label="桌面预览"]) {
  flex-direction: row !important;
  width: auto !important; /* 自适应宽度 */
  display: inline-flex !important;
  background-color: var(--sidebar-bg) !important;
  border-radius: 12px !important;
  padding: 4px !important;
  gap: 4px !important;
  box-shadow: var(--shadow-concave) !important;
  margin: 0 !important;
}

/* 2. 隐藏侧边栏标题 */
.tab-group.tab-group-default:has([aria-label="桌面预览"])::before {
  display: none !important;
}

/* 3. 重置 Tab 样式 (宽度、内边距、对齐) */
.tab-group.tab-group-default:has([aria-label="桌面预览"]) .tab.tab-md {
  width: auto !important;
  padding: 6px 12px !important; /* 恢复合适的内边距 */
  margin: 0 !important;
  justify-content: center !important;
  text-align: center !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  gap: 6px !important;
  opacity: 1 !important; /* 确保可见 */
}

/* 4. 关键：移除侧边栏强加的伪元素图标 */
.tab-group.tab-group-default:has([aria-label="桌面预览"]) .tab.tab-md::before {
  display: none !important;
  content: none !important;
}

/* 5. 确保内部 SVG 图标可见且尺寸正确 */
.tab-group.tab-group-default:has([aria-label="桌面预览"]) .tab.tab-md .i-icon {
  font-size: 1.1em !important;
  display: flex !important;
}

/* 6. 修复文字显示异常：移除被全局规则添加的“智能对话”和“智创工坊”伪元素 */
.tab-group.tab-group-default:has([aria-label="桌面预览"]) .tab.tab-md:first-child::after,
.tab-group.tab-group-default:has([aria-label="桌面预览"]) .tab.tab-md:last-child::after {
  content: none !important;
  display: none !important;
}

/* 7. 恢复原有文字显示 (覆盖 first-child/last-child 的 font-size: 0) */
.tab-group.tab-group-default:has([aria-label="桌面预览"]) .tab.tab-md:first-child,
.tab-group.tab-group-default:has([aria-label="桌面预览"]) .tab.tab-md:last-child {
  font-size: 0.875rem !important;
}

/* --- 分享弹窗按钮统一 (Share Modal Button Size Alignment) --- */

/* 仅作用于 data-v-aeab3cb3 的底部按钮行，避免影响全局按钮 */
.flex.justify-end.mt-4[data-v-aeab3cb3] > button[data-v-aeab3cb3].px-4.py-2 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  line-height: 20px !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
}

/* 覆盖全局 primary 按钮负 margin，保证“分享”与“取消”视觉一致 */
.flex.justify-end.mt-4[data-v-aeab3cb3] > button[data-v-aeab3cb3].bg-primary-600 {
  margin: 0 !important;
}

/* --- 移动端模型选择按钮防挤压 (Mobile Model Selector Overflow Fix) --- */
@media (max-width: 768px) {
  button.menu-trigger[aria-label="选择模型"] {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: 56vw !important;
    overflow: hidden !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  button.menu-trigger[aria-label="选择模型"] > span {
    display: block !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
}

/* 左侧栏布局由聊天运行时补丁按 data-runtime-* 属性接管，这里不再保留旧的 sticky 分区规则。 */

/* -------------------
 * B. 模型回退提示
 * ------------------- */

/* 模型回退提示 Toast */
.model-fallback-toast-container {
  position: fixed !important;
  top: 16px !important;
  right: 16px !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: min(92vw, 420px) !important;
  pointer-events: none !important;
}

.model-fallback-toast {
  background-color: var(--theme-bg) !important;
  color: var(--theme-text) !important;
  border-radius: 12px !important;
  box-shadow: var(--shadow-convex) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  padding: 10px 14px !important;
  opacity: 0 !important;
  transform: translateY(-8px) !important;
  transition: opacity 0.24s ease, transform 0.24s ease !important;
}

html.dark .model-fallback-toast {
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.model-fallback-toast.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.model-fallback-toast.is-leaving {
  opacity: 0 !important;
  transform: translateY(-6px) !important;
}

.model-fallback-toast__title {
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  margin-bottom: 4px !important;
  color: var(--theme-text) !important;
}

.model-fallback-toast__desc {
  font-size: 12px !important;
  line-height: 1.45 !important;
  color: var(--theme-primary) !important;
  word-break: break-word !important;
}

@media (max-width: 768px) {
  .model-fallback-toast-container {
    top: 10px !important;
    right: 10px !important;
    left: 10px !important;
    width: auto !important;
  }
}

/* -------------------
 * 12. 模型回退操作行提示
 * ------------------- */
.model-fallback-action-row--with-note {
  opacity: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  width: 100% !important;
}

.model-fallback-action-row--with-note > .mt-2.flex.group {
  margin-top: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.2s ease !important;
}

#image-wrapper > .mb-3:hover .model-fallback-action-row--with-note > .mt-2.flex.group,
#image-wrapper div.flex.w-full.my-2.pb-3.items-start.flex-row:hover .model-fallback-action-row--with-note > .mt-2.flex.group,
.model-fallback-action-row--with-note:hover > .mt-2.flex.group {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.model-fallback-action-note {
  display: inline-flex !important;
  align-items: center !important;
  margin-top: 0 !important;
  margin-left: auto !important;
  margin-right: 10px !important;
  padding: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  border: 0 !important;
  color: var(--theme-text) !important;
  opacity: 1 !important;
  font-size: 11px !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
  white-space: nowrap !important;
  text-align: right !important;
  max-width: min(60vw, 520px) !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

html.dark .model-fallback-action-note {
  color: var(--theme-text) !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .model-fallback-action-note {
    font-size: 10px !important;
    max-width: min(74vw, 92vw) !important;
  }
}

/* -------------------
 * C. 最终默认主题基线
 * ------------------- */

/* -------------------
 * 43. Default Theme V1 Baseline
 * ------------------- */

:root {
  --runtime-palette-neutral-0: #ffffff !important;
  --runtime-palette-neutral-25: #f8f8f8 !important;
  --runtime-palette-neutral-50: #f2f2f2 !important;
  --runtime-palette-neutral-100: #e7e7e7 !important;
  --runtime-palette-neutral-200: #d4d4d4 !important;
  --runtime-palette-neutral-300: #b6b6b6 !important;
  --runtime-palette-neutral-400: #909090 !important;
  --runtime-palette-neutral-500: #666666 !important;
  --runtime-palette-neutral-600: #4f4f4f !important;
  --runtime-palette-neutral-700: #383838 !important;
  --runtime-palette-neutral-800: #222222 !important;
  --runtime-palette-neutral-900: #111111 !important;
  --runtime-palette-brand-100: #f0f0f0 !important;
  --runtime-palette-brand-200: #dddddd !important;
  --runtime-palette-brand-300: #c5c5c5 !important;
  --runtime-palette-brand-400: #8a8a8a !important;
  --runtime-palette-brand-500: #2b2b2b !important;
  --runtime-palette-brand-600: #202020 !important;
  --runtime-palette-brand-700: #141414 !important;
  --runtime-palette-info-soft: rgba(221, 232, 244, 0.88) !important;
  --runtime-palette-info-base: #51708d !important;
  --runtime-palette-info-strong: #2d465d !important;
  --runtime-palette-success-soft: rgba(220, 237, 227, 0.9) !important;
  --runtime-palette-success-base: #4f7660 !important;
  --runtime-palette-success-strong: #234431 !important;
  --runtime-palette-warning-soft: rgba(244, 235, 214, 0.92) !important;
  --runtime-palette-warning-base: #9a7443 !important;
  --runtime-palette-warning-strong: #624214 !important;
  --runtime-palette-danger-soft: rgba(244, 225, 225, 0.92) !important;
  --runtime-palette-danger-base: #935454 !important;
  --runtime-palette-danger-strong: #632424 !important;
  --runtime-color-text-primary: #111111 !important;
  --runtime-color-text-secondary: rgba(17, 17, 17, 0.78) !important;
  --runtime-color-text-tertiary: rgba(17, 17, 17, 0.52) !important;
  --runtime-sidebar-action-color: #111111 !important;
  --runtime-sidebar-heading-color: #111111 !important;
  --runtime-sidebar-conversation-color: #050505 !important;
  --runtime-sidebar-conversation-hover-color: #050505 !important;
  --runtime-sidebar-conversation-active-color: #050505 !important;
  --runtime-sidebar-logo-size: 30px !important;
  --runtime-sidebar-top-action-icon-size: var(--runtime-sidebar-logo-size) !important;
  --runtime-sidebar-content-indent: 6.25px !important;
  --runtime-color-text-inverse: #fafafa !important;
  --runtime-color-accent: #111111 !important;
  --runtime-accent-primary-surface: rgb(69, 82, 99) !important;
  --runtime-accent-primary-hover: rgb(56, 68, 82) !important;
  --runtime-accent-primary-text: #ffffff !important;
  --runtime-accent-primary-text-soft: rgb(55, 65, 81) !important;
  --runtime-accent-primary-soft: rgba(69, 82, 99, 0.1) !important;
  --runtime-accent-primary-soft-hover: rgba(69, 82, 99, 0.14) !important;
  --runtime-accent-primary-ring: rgba(69, 82, 99, 0.18) !important;
  --runtime-accent-primary-shadow: 0 0 0 2px rgba(69, 82, 99, 0.14) !important;
  --runtime-border-soft: rgba(17, 17, 17, 0) !important;
  --runtime-border-default: rgba(17, 17, 17, 0) !important;
  --runtime-border-strong: rgba(17, 17, 17, 0) !important;
  --runtime-border-accent: rgba(17, 17, 17, 0) !important;
  --runtime-divider: rgba(17, 17, 17, 0.06) !important;
  --runtime-canvas-bg: #ffffff !important;
  --runtime-surface-base: rgba(255, 255, 255, 0.98) !important;
  --runtime-surface-shell: rgba(235, 235, 235, 0.98) !important;
  --runtime-surface-panel: rgba(255, 255, 255, 0.98) !important;
  --runtime-surface-card: rgba(243, 243, 243, 0.96) !important;
  --runtime-surface-card-hover: rgba(234, 234, 234, 0.98) !important;
  --runtime-surface-card-active: rgba(223, 223, 223, 0.98) !important;
  --runtime-surface-composer: rgba(255, 255, 255, 0.98) !important;
  --runtime-surface-overlay: rgba(17, 17, 17, 0.42) !important;
  --runtime-surface-menu: rgba(255, 255, 255, 0.99) !important;
  --runtime-surface-row-hover: rgba(231, 231, 231, 0.88) !important;
  --runtime-surface-row-active: rgba(218, 218, 218, 0.98) !important;
  --runtime-fill-toolbar: rgba(238, 238, 238, 0.88) !important;
  --runtime-fill-chip: rgba(240, 240, 240, 0.94) !important;
  --runtime-fill-chip-hover: rgba(228, 228, 228, 0.98) !important;
  --runtime-fill-sheen: transparent !important;
  --runtime-fill-primary: #111111 !important;
  --runtime-fill-primary-hover: #1d1d1d !important;
  --runtime-shadow-subtle: 0 0 0 2px rgba(15, 23, 42, 0.042), 0 0 14px rgba(15, 23, 42, 0.021) !important;
  --runtime-shadow-hover-ring: 0 0 0 2px rgba(15, 23, 42, 0.052), 0 0 17px rgba(15, 23, 42, 0.026) !important;
  --runtime-shadow-active-ring: 0 0 0 2px rgba(15, 23, 42, 0.062), 0 0 20px rgba(15, 23, 42, 0.032) !important;
  --runtime-shadow-selected: 0 0 0 2px rgba(15, 23, 42, 0.048), 0 0 22px rgba(15, 23, 42, 0.024) !important;
  --runtime-shadow-unified: var(--runtime-shadow-selected) !important;
  --runtime-shadow-floating: var(--runtime-shadow-selected) !important;
  --runtime-shadow-soft: var(--runtime-shadow-selected) !important;
  --runtime-shadow-strong: var(--runtime-shadow-selected) !important;
  --runtime-shadow-composer: var(--runtime-shadow-selected) !important;
  --runtime-shadow-primary: var(--runtime-shadow-selected) !important;
  --runtime-state-info-bg: rgba(221, 232, 244, 0.92) !important;
  --runtime-state-info-text: #2d465d !important;
  --runtime-state-info-border: rgba(81, 112, 141, 0.18) !important;
  --runtime-state-success-bg: rgba(220, 237, 227, 0.92) !important;
  --runtime-state-success-text: #234431 !important;
  --runtime-state-success-border: rgba(79, 118, 96, 0.16) !important;
  --runtime-state-warning-bg: rgba(244, 235, 214, 0.94) !important;
  --runtime-state-warning-text: #624214 !important;
  --runtime-state-warning-border: rgba(154, 116, 67, 0.2) !important;
  --runtime-state-danger-bg: rgba(244, 225, 225, 0.94) !important;
  --runtime-state-danger-text: #632424 !important;
  --runtime-state-danger-border: rgba(147, 84, 84, 0.2) !important;
  --runtime-shell-border: transparent !important;
  --runtime-shell-line: var(--runtime-divider) !important;
  --runtime-shell-title: var(--runtime-color-text-primary) !important;
  --runtime-shell-text: var(--runtime-color-text-secondary) !important;
  --runtime-shell-subtle: var(--runtime-color-text-tertiary) !important;
  --runtime-shell-accent: rgba(17, 17, 17, 0.04) !important;
  --runtime-shell-surface: var(--runtime-surface-shell) !important;
  --runtime-shell-panel: var(--runtime-surface-panel) !important;
  --runtime-shell-card: var(--runtime-surface-card) !important;
  --runtime-shell-card-hover: var(--runtime-surface-card-hover) !important;
  --runtime-shell-card-active: var(--runtime-surface-card-active) !important;
  --runtime-shell-shadow: var(--runtime-shadow-floating) !important;
  --runtime-shell-card-shadow: var(--runtime-shadow-soft) !important;
  --runtime-shell-card-shadow-strong: var(--runtime-shadow-strong) !important;
  --runtime-shell-muted: var(--runtime-fill-chip) !important;
  --runtime-v12-bg: var(--runtime-canvas-bg) !important;
  --runtime-v12-panel: var(--runtime-surface-panel) !important;
  --runtime-v12-panel-border: transparent !important;
  --runtime-v12-row-text: var(--runtime-color-text-primary) !important;
  --runtime-v12-row-muted: var(--runtime-color-text-tertiary) !important;
  --runtime-v12-row-hover: var(--runtime-surface-row-hover) !important;
  --runtime-v12-row-active: var(--runtime-surface-row-active) !important;
  --runtime-v12-row-active-border: transparent !important;
  --runtime-v12-tab-icon: rgba(79, 79, 79, 0.88) !important;
  --runtime-v12-tab-icon-active: var(--runtime-color-accent) !important;
  --runtime-v12-card: var(--runtime-surface-card) !important;
  --runtime-v12-card-border: transparent !important;
  --runtime-v12-card-shadow: var(--runtime-shadow-soft) !important;
  --runtime-v12-composer-text: var(--runtime-color-text-primary) !important;
  --runtime-v12-placeholder: var(--runtime-color-text-tertiary) !important;
  --runtime-v12-toolbar-line: rgba(17, 17, 17, 0.08) !important;
  --runtime-v12-chip: var(--runtime-fill-chip) !important;
  --runtime-v12-header-chip: var(--runtime-fill-toolbar) !important;
  --runtime-v12-orb-a: transparent !important;
  --runtime-v12-orb-b: transparent !important;
  --runtime-v12-orb-c: transparent !important;
  --runtime-v30-panel-sheen: transparent !important;
  --runtime-v30-chip-hover: var(--runtime-fill-chip-hover) !important;
  --runtime-v30-button-shadow: var(--runtime-shadow-selected) !important;
  --runtime-v30-button-shadow-strong: var(--runtime-shadow-selected) !important;
  --theme-bg: var(--runtime-surface-base) !important;
  --sidebar-bg: #ebebeb !important;
  --theme-text: var(--runtime-color-text-primary) !important;
  --theme-primary: var(--runtime-color-text-secondary) !important;
  --glass-bg: rgba(255, 255, 255, 0.92) !important;
  --glass-bg-strong: rgba(255, 255, 255, 0.98) !important;
  --glass-border: transparent !important;
  --glass-border-strong: transparent !important;
  --glass-shadow: var(--runtime-shadow-selected) !important;
  --shadow-convex: var(--runtime-shadow-selected) !important;
  --shadow-concave: var(--runtime-shadow-selected) !important;
  --shadow-flat: var(--runtime-shadow-selected) !important;
  --shadow-concave-shallow: var(--runtime-shadow-selected) !important;
}

html.dark {
  --runtime-palette-neutral-0: #090909 !important;
  --runtime-palette-neutral-25: #101010 !important;
  --runtime-palette-neutral-50: #141414 !important;
  --runtime-palette-neutral-100: #1a1a1a !important;
  --runtime-palette-neutral-200: #232323 !important;
  --runtime-palette-neutral-300: #313131 !important;
  --runtime-palette-neutral-400: #545454 !important;
  --runtime-palette-neutral-500: #797979 !important;
  --runtime-palette-neutral-600: #a7a7a7 !important;
  --runtime-palette-neutral-700: #cbcbcb !important;
  --runtime-palette-neutral-800: #e7e7e7 !important;
  --runtime-palette-neutral-900: #f5f5f5 !important;
  --runtime-palette-brand-100: #1a1a1a !important;
  --runtime-palette-brand-200: #232323 !important;
  --runtime-palette-brand-300: #313131 !important;
  --runtime-palette-brand-400: #7f7f7f !important;
  --runtime-palette-brand-500: #f1f1f1 !important;
  --runtime-palette-brand-600: #f7f7f7 !important;
  --runtime-palette-brand-700: #ffffff !important;
  --runtime-palette-info-soft: rgba(36, 53, 67, 0.64) !important;
  --runtime-palette-info-base: #a1bfd7 !important;
  --runtime-palette-info-strong: #e2eef8 !important;
  --runtime-palette-success-soft: rgba(34, 59, 44, 0.62) !important;
  --runtime-palette-success-base: #9dc5ab !important;
  --runtime-palette-success-strong: #e3f1e7 !important;
  --runtime-palette-warning-soft: rgba(70, 49, 24, 0.66) !important;
  --runtime-palette-warning-base: #d7b17a !important;
  --runtime-palette-warning-strong: #f5e3c7 !important;
  --runtime-palette-danger-soft: rgba(72, 33, 33, 0.68) !important;
  --runtime-palette-danger-base: #d4a1a1 !important;
  --runtime-palette-danger-strong: #f5dddd !important;
  --runtime-color-text-primary: #f5f5f5 !important;
  --runtime-color-text-secondary: rgba(238, 238, 238, 0.9) !important;
  --runtime-color-text-tertiary: rgba(188, 188, 188, 0.74) !important;
  --runtime-sidebar-action-color: #f3f3f3 !important;
  --runtime-sidebar-heading-color: #f3f3f3 !important;
  --runtime-sidebar-conversation-color: #ffffff !important;
  --runtime-sidebar-conversation-hover-color: #ffffff !important;
  --runtime-sidebar-conversation-active-color: #ffffff !important;
  --runtime-sidebar-logo-size: 30px !important;
  --runtime-sidebar-top-action-icon-size: var(--runtime-sidebar-logo-size) !important;
  --runtime-sidebar-content-indent: 6.25px !important;
  --runtime-color-text-inverse: #111111 !important;
  --runtime-color-accent: #f5f5f5 !important;
  --runtime-accent-primary-surface: rgb(88, 102, 122) !important;
  --runtime-accent-primary-hover: rgb(97, 112, 132) !important;
  --runtime-accent-primary-text: #ffffff !important;
  --runtime-accent-primary-text-soft: rgb(198, 209, 222) !important;
  --runtime-accent-primary-soft: rgba(88, 102, 122, 0.2) !important;
  --runtime-accent-primary-soft-hover: rgba(88, 102, 122, 0.28) !important;
  --runtime-accent-primary-ring: rgba(88, 102, 122, 0.32) !important;
  --runtime-accent-primary-shadow: 0 0 0 2px rgba(88, 102, 122, 0.34) !important;
  --runtime-border-soft: rgba(245, 245, 245, 0) !important;
  --runtime-border-default: rgba(245, 245, 245, 0) !important;
  --runtime-border-strong: rgba(245, 245, 245, 0) !important;
  --runtime-border-accent: rgba(245, 245, 245, 0) !important;
  --runtime-divider: rgba(255, 255, 255, 0.08) !important;
  --runtime-canvas-bg: #101010 !important;
  --runtime-surface-base: rgba(22, 22, 22, 0.96) !important;
  --runtime-surface-shell: rgba(18, 18, 18, 0.94) !important;
  --runtime-surface-panel: rgba(22, 22, 22, 0.92) !important;
  --runtime-surface-card: rgba(28, 28, 28, 0.84) !important;
  --runtime-surface-card-hover: rgba(38, 38, 38, 0.92) !important;
  --runtime-surface-card-active: rgba(52, 52, 52, 0.94) !important;
  --runtime-surface-composer: rgba(20, 20, 20, 0.92) !important;
  --runtime-surface-overlay: rgba(0, 0, 0, 0.6) !important;
  --runtime-surface-menu: rgba(18, 18, 18, 0.96) !important;
  --runtime-surface-row-hover: rgba(34, 34, 34, 0.78) !important;
  --runtime-surface-row-active: rgba(50, 50, 50, 0.88) !important;
  --runtime-fill-toolbar: rgba(36, 36, 36, 0.78) !important;
  --runtime-fill-chip: rgba(42, 42, 42, 0.86) !important;
  --runtime-fill-chip-hover: rgba(58, 58, 58, 0.94) !important;
  --runtime-fill-sheen: transparent !important;
  --runtime-fill-primary: #f1f1f1 !important;
  --runtime-fill-primary-hover: #ffffff !important;
  --runtime-shadow-subtle: 0 0 0 2px rgba(255, 255, 255, 0.042), 0 0 14px rgba(0, 0, 0, 0.14) !important;
  --runtime-shadow-hover-ring: 0 0 0 2px rgba(255, 255, 255, 0.052), 0 0 17px rgba(0, 0, 0, 0.17) !important;
  --runtime-shadow-active-ring: 0 0 0 2px rgba(255, 255, 255, 0.062), 0 0 20px rgba(0, 0, 0, 0.21) !important;
  --runtime-shadow-selected: 0 0 0 2px rgba(255, 255, 255, 0.044), 0 0 22px rgba(0, 0, 0, 0.15) !important;
  --runtime-shadow-unified: var(--runtime-shadow-selected) !important;
  --runtime-shadow-floating: var(--runtime-shadow-selected) !important;
  --runtime-shadow-soft: var(--runtime-shadow-selected) !important;
  --runtime-shadow-strong: var(--runtime-shadow-selected) !important;
  --runtime-shadow-composer: var(--runtime-shadow-selected) !important;
  --runtime-shadow-primary: var(--runtime-shadow-selected) !important;
  --runtime-state-info-bg: rgba(36, 53, 67, 0.72) !important;
  --runtime-state-info-text: #e2eef8 !important;
  --runtime-state-info-border: rgba(161, 191, 215, 0.2) !important;
  --runtime-state-success-bg: rgba(34, 59, 44, 0.72) !important;
  --runtime-state-success-text: #e3f1e7 !important;
  --runtime-state-success-border: rgba(157, 197, 171, 0.2) !important;
  --runtime-state-warning-bg: rgba(70, 49, 24, 0.78) !important;
  --runtime-state-warning-text: #f5e3c7 !important;
  --runtime-state-warning-border: rgba(215, 177, 122, 0.22) !important;
  --runtime-state-danger-bg: rgba(72, 33, 33, 0.78) !important;
  --runtime-state-danger-text: #f5dddd !important;
  --runtime-state-danger-border: rgba(212, 161, 161, 0.22) !important;
  --runtime-shell-border: transparent !important;
  --runtime-shell-line: var(--runtime-divider) !important;
  --runtime-shell-title: var(--runtime-color-text-primary) !important;
  --runtime-shell-text: var(--runtime-color-text-secondary) !important;
  --runtime-shell-subtle: var(--runtime-color-text-tertiary) !important;
  --runtime-shell-accent: rgba(255, 255, 255, 0.08) !important;
  --runtime-shell-surface: var(--runtime-surface-shell) !important;
  --runtime-shell-panel: var(--runtime-surface-panel) !important;
  --runtime-shell-card: var(--runtime-surface-card) !important;
  --runtime-shell-card-hover: var(--runtime-surface-card-hover) !important;
  --runtime-shell-card-active: var(--runtime-surface-card-active) !important;
  --runtime-shell-shadow: var(--runtime-shadow-floating) !important;
  --runtime-shell-card-shadow: var(--runtime-shadow-soft) !important;
  --runtime-shell-card-shadow-strong: var(--runtime-shadow-strong) !important;
  --runtime-shell-muted: var(--runtime-fill-chip) !important;
  --runtime-v12-bg: var(--runtime-canvas-bg) !important;
  --runtime-v12-panel: var(--runtime-surface-panel) !important;
  --runtime-v12-panel-border: transparent !important;
  --runtime-v12-row-text: var(--runtime-color-text-primary) !important;
  --runtime-v12-row-muted: var(--runtime-color-text-tertiary) !important;
  --runtime-v12-row-hover: var(--runtime-surface-row-hover) !important;
  --runtime-v12-row-active: var(--runtime-surface-row-active) !important;
  --runtime-v12-row-active-border: transparent !important;
  --runtime-v12-tab-icon: rgba(208, 208, 208, 0.84) !important;
  --runtime-v12-tab-icon-active: var(--runtime-color-accent) !important;
  --runtime-v12-card: var(--runtime-surface-card) !important;
  --runtime-v12-card-border: transparent !important;
  --runtime-v12-card-shadow: var(--runtime-shadow-soft) !important;
  --runtime-v12-composer-text: var(--runtime-color-text-primary) !important;
  --runtime-v12-placeholder: var(--runtime-color-text-tertiary) !important;
  --runtime-v12-toolbar-line: rgba(255, 255, 255, 0.08) !important;
  --runtime-v12-chip: var(--runtime-fill-chip) !important;
  --runtime-v12-header-chip: var(--runtime-fill-toolbar) !important;
  --runtime-v12-orb-a: transparent !important;
  --runtime-v12-orb-b: transparent !important;
  --runtime-v12-orb-c: transparent !important;
  --runtime-v30-panel-sheen: transparent !important;
  --runtime-v30-chip-hover: var(--runtime-fill-chip-hover) !important;
  --runtime-v30-button-shadow: var(--runtime-shadow-selected) !important;
  --runtime-v30-button-shadow-strong: var(--runtime-shadow-selected) !important;
  --theme-bg: var(--runtime-surface-base) !important;
  --sidebar-bg: #141414 !important;
  --theme-text: var(--runtime-color-text-primary) !important;
  --theme-primary: var(--runtime-color-text-secondary) !important;
  --glass-bg: rgba(18, 18, 18, 0.66) !important;
  --glass-bg-strong: rgba(18, 18, 18, 0.82) !important;
  --glass-border: transparent !important;
  --glass-border-strong: transparent !important;
  --glass-shadow: var(--runtime-shadow-selected) !important;
  --shadow-convex: var(--runtime-shadow-selected) !important;
  --shadow-concave: var(--runtime-shadow-selected) !important;
  --shadow-flat: var(--runtime-shadow-selected) !important;
  --shadow-concave-shallow: var(--runtime-shadow-selected) !important;
}

body[data-runtime-shell-ready="true"] {
  --runtime-color-text-primary: #111111 !important;
  --runtime-color-text-secondary: rgba(34, 34, 34, 0.88) !important;
  --runtime-color-text-tertiary: rgba(79, 79, 79, 0.72) !important;
  --runtime-color-accent: #111111 !important;
  --runtime-border-soft: rgba(17, 17, 17, 0) !important;
  --runtime-border-default: rgba(17, 17, 17, 0) !important;
  --runtime-border-strong: rgba(17, 17, 17, 0) !important;
  --runtime-divider: rgba(17, 17, 17, 0.08) !important;
  --runtime-canvas-bg: inherit !important;
  --runtime-surface-shell: inherit !important;
  --runtime-surface-panel: inherit !important;
  --runtime-surface-card: inherit !important;
  --runtime-surface-card-hover: inherit !important;
  --runtime-surface-card-active: inherit !important;
  --runtime-surface-composer: inherit !important;
  --runtime-surface-row-hover: inherit !important;
  --runtime-surface-row-active: inherit !important;
  --runtime-fill-toolbar: inherit !important;
  --runtime-fill-chip: inherit !important;
  --runtime-fill-chip-hover: inherit !important;
  --runtime-fill-sheen: inherit !important;
  --runtime-fill-primary: inherit !important;
  --runtime-shadow-floating: var(--runtime-shadow-selected) !important;
  --runtime-shadow-soft: var(--runtime-shadow-selected) !important;
  --runtime-shadow-strong: var(--runtime-shadow-selected) !important;
  --runtime-shadow-composer: var(--runtime-shadow-selected) !important;
  --runtime-shadow-primary: var(--runtime-shadow-selected) !important;
  --runtime-shell-accent: rgba(17, 17, 17, 0.08) !important;
  --runtime-v12-row-active-border: transparent !important;
  --runtime-v12-tab-icon: rgba(79, 79, 79, 0.88) !important;
  --runtime-v12-toolbar-line: rgba(17, 17, 17, 0.08) !important;
}

html.dark body[data-runtime-shell-ready="true"] {
  --runtime-color-text-primary: #f5f5f5 !important;
  --runtime-color-text-secondary: rgba(238, 238, 238, 0.9) !important;
  --runtime-color-text-tertiary: rgba(188, 188, 188, 0.74) !important;
  --runtime-color-accent: #f5f5f5 !important;
  --runtime-border-soft: rgba(245, 245, 245, 0) !important;
  --runtime-border-default: rgba(245, 245, 245, 0) !important;
  --runtime-border-strong: rgba(245, 245, 245, 0) !important;
  --runtime-divider: rgba(255, 255, 255, 0.08) !important;
  --runtime-canvas-bg: inherit !important;
  --runtime-surface-shell: inherit !important;
  --runtime-surface-panel: inherit !important;
  --runtime-surface-card: inherit !important;
  --runtime-surface-card-hover: inherit !important;
  --runtime-surface-card-active: inherit !important;
  --runtime-surface-composer: inherit !important;
  --runtime-surface-row-hover: inherit !important;
  --runtime-surface-row-active: inherit !important;
  --runtime-fill-toolbar: inherit !important;
  --runtime-fill-chip: inherit !important;
  --runtime-fill-chip-hover: inherit !important;
  --runtime-fill-sheen: inherit !important;
  --runtime-fill-primary: inherit !important;
  --runtime-shadow-floating: var(--runtime-shadow-selected) !important;
  --runtime-shadow-soft: var(--runtime-shadow-selected) !important;
  --runtime-shadow-strong: var(--runtime-shadow-selected) !important;
  --runtime-shadow-composer: var(--runtime-shadow-selected) !important;
  --runtime-shadow-primary: var(--runtime-shadow-selected) !important;
  --runtime-shell-accent: rgba(255, 255, 255, 0.08) !important;
  --runtime-v12-row-active-border: transparent !important;
  --runtime-v12-tab-icon: rgba(208, 208, 208, 0.84) !important;
  --runtime-v12-toolbar-line: rgba(255, 255, 255, 0.08) !important;
}

body[data-runtime-shell-ready="true"]::before,
body[data-runtime-shell-ready="true"]::after {
  content: none !important;
  display: none !important;
  opacity: 0.66 !important;
  filter: none !important;
  background: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"]::after,
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-root="true"]::after,
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"]::after,
body[data-runtime-shell-ready="true"] [data-runtime-mobile-nav="true"]::after,
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"]::after,
body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"]::after {
  animation: none !important;
  opacity: 0.32 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] button[data-runtime-header-action],
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] .btn-icon,
body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot] > .menu,
body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot] > .cursor-pointer,
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] button,
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [role="button"],
body[data-runtime-shell-ready="true"] [data-runtime-composer-submit="true"] button,
body[data-runtime-shell-ready="true"] [data-runtime-mobile-nav-button="true"] {
  animation: none !important;
  transition:
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-root="true"],
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"],
body[data-runtime-shell-ready="true"] [data-runtime-mobile-nav="true"],
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"],
body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] .tab-group,
body[data-runtime-shell-ready="true"] [data-runtime-app-action="true"],
body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"],
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] button.btn-pill,
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] .btn-pill[role="button"],
body[data-runtime-shell-ready="true"] [data-runtime-mobile-nav-button="true"],
body[data-runtime-shell-ready="true"] .menu-items,
body[data-runtime-shell-ready="true"] [role="dialog"] > div,
body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[55\] > div,
body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[60\] > div,
body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[70\] > div,
body[data-runtime-shell-ready="true"] textarea[aria-label="聊天消息输入框"],
body[data-runtime-shell-ready="true"] input:not([type="checkbox"]):not([type="radio"]),
body[data-runtime-shell-ready="true"] select,
body[data-runtime-shell-ready="true"] pre,
body[data-runtime-shell-ready="true"] code {
  border: 0 !important;
  outline: 0 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"],
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"],
body[data-runtime-shell-ready="true"] .menu-items,
body[data-runtime-shell-ready="true"] [role="dialog"] > div,
body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[55\] > div,
body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[60\] > div,
body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[70\] > div {
  background: var(--runtime-surface-panel) !important;
  box-shadow: var(--runtime-shadow-soft) !important;
  backdrop-filter: blur(26px) saturate(112%) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-sidebar-root="true"] {
  background: var(--runtime-surface-shell) !important;
  box-shadow: var(--runtime-shadow-floating) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] {
  background: var(--runtime-surface-composer) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-mobile-nav="true"] {
  background: var(--runtime-surface-panel) !important;
  box-shadow: var(--runtime-shadow-soft) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] button[data-runtime-header-action],
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] .btn-icon,
body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot] > .menu,
body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot] > .cursor-pointer,
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] button,
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [role="button"],
body[data-runtime-shell-ready="true"] [data-runtime-mobile-nav-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="footer"] [role="button"][aria-label="设置"] {
  background: var(--runtime-fill-chip) !important;
  color: var(--runtime-sidebar-action-color, #111111) !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"]:hover,
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] button[data-runtime-header-action]:hover,
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] .btn-icon:hover,
body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot] > .menu:hover,
body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot] > .cursor-pointer:hover,
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] button:hover,
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [role="button"]:hover,
body[data-runtime-shell-ready="true"] [data-runtime-mobile-nav-button="true"]:hover,
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="footer"] [role="button"][aria-label="设置"]:hover {
  background: var(--runtime-fill-chip-hover) !important;
  box-shadow: var(--runtime-v30-button-shadow) !important;
  transform: translateY(-1px) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"][aria-expanded="true"],
body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"][data-open="true"],
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] button[data-runtime-header-action][aria-pressed="true"],
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] button[data-runtime-header-action][data-active="true"],
body[data-runtime-shell-ready="true"] [data-runtime-mobile-nav-button="true"][data-active="true"] {
  background: var(--runtime-surface-row-active) !important;
  color: var(--runtime-color-text-primary) !important;
  box-shadow: var(--runtime-v30-button-shadow-strong) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] .tab-group,
body[data-runtime-shell-ready="true"] [data-runtime-app-action="true"],
body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"] {
  background: var(--runtime-surface-card) !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"]:hover,
body[data-runtime-shell-ready="true"] [data-runtime-app-action="true"]:hover,
body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"]:hover {
  background: var(--runtime-surface-card-hover) !important;
  box-shadow: var(--runtime-v30-button-shadow) !important;
  transform: translate3d(0, -1px, 0) scale(1.01) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"][aria-selected="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"][aria-checked="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"][aria-pressed="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"].active,
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"].tab-active,
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"][data-runtime-active="true"],
body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"].bg-white,
body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"].text-primary-600,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"].dark\:bg-gray-800,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"].dark\:text-white {
  background: var(--runtime-surface-row-active) !important;
  color: var(--runtime-color-text-primary) !important;
  box-shadow: var(--runtime-v30-button-shadow-strong) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] button.btn-pill,
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] .btn-pill[role="button"] {
  background: var(--runtime-fill-chip) !important;
  color: var(--runtime-sidebar-conversation-color, rgba(17, 17, 17, 0.46)) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-submit="true"] button {
  background: var(--runtime-fill-primary) !important;
  color: var(--runtime-color-text-inverse) !important;
  box-shadow: var(--runtime-shadow-primary) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-submit="true"] button:hover {
  background: var(--runtime-fill-primary-hover) !important;
  box-shadow: var(--runtime-shadow-primary) !important;
  transform: translateY(-1px) !important;
}

body[data-runtime-shell-ready="true"] textarea[aria-label="聊天消息输入框"],
body[data-runtime-shell-ready="true"] input:not([type="checkbox"]):not([type="radio"]),
body[data-runtime-shell-ready="true"] select {
  background: var(--runtime-surface-base) !important;
  color: var(--runtime-color-text-primary) !important;
  box-shadow: var(--runtime-shadow-selected) !important;
}

html.dark body[data-runtime-shell-ready="true"] textarea[aria-label="聊天消息输入框"],
html.dark body[data-runtime-shell-ready="true"] input:not([type="checkbox"]):not([type="radio"]),
html.dark body[data-runtime-shell-ready="true"] select {
  box-shadow: var(--runtime-shadow-selected) !important;
}

body[data-runtime-shell-ready="true"] button:focus-visible,
body[data-runtime-shell-ready="true"] [role="button"]:focus-visible,
body[data-runtime-shell-ready="true"] a:focus-visible,
body[data-runtime-shell-ready="true"] textarea:focus-visible,
body[data-runtime-shell-ready="true"] input:focus-visible,
body[data-runtime-shell-ready="true"] select:focus-visible {
  outline: none !important;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.82),
    0 0 0 5px rgba(17, 17, 17, 0.2),
    var(--runtime-shadow-soft) !important;
}

html.dark body[data-runtime-shell-ready="true"] button:focus-visible,
html.dark body[data-runtime-shell-ready="true"] [role="button"]:focus-visible,
html.dark body[data-runtime-shell-ready="true"] a:focus-visible,
html.dark body[data-runtime-shell-ready="true"] textarea:focus-visible,
html.dark body[data-runtime-shell-ready="true"] input:focus-visible,
html.dark body[data-runtime-shell-ready="true"] select:focus-visible {
  box-shadow:
    0 0 0 2px rgba(17, 17, 17, 0.84),
    0 0 0 5px rgba(255, 255, 255, 0.18),
    var(--runtime-shadow-soft) !important;
}

/* -------------------
 * 44. Default Theme Flat Background Enforcement
 * ------------------- */

html,
body,
#app,
body[data-runtime-shell-ready="true"],
body[data-runtime-shell-ready="true"] [data-runtime-main-frame="true"],
body[data-runtime-shell-ready="true"] main,
body[data-runtime-shell-ready="true"] .n-layout,
body[data-runtime-shell-ready="true"] .n-layout-content {
  background-image: none !important;
}

html,
body,
#app {
  background-color: var(--runtime-canvas-bg) !important;
}

body[data-runtime-shell-ready="true"] {
  background: var(--runtime-canvas-bg) !important;
}

html.dark body[data-runtime-shell-ready="true"] {
  background: var(--runtime-canvas-bg) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-main-frame="true"],
body[data-runtime-shell-ready="true"] main,
body[data-runtime-shell-ready="true"] .n-layout,
body[data-runtime-shell-ready="true"] .n-layout-content {
  background-color: var(--runtime-surface-base) !important;
  color: var(--runtime-color-text-primary) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-root="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-main="true"],
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"],
body[data-runtime-shell-ready="true"] [data-runtime-mobile-nav="true"],
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"],
body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] .tab-group,
body[data-runtime-shell-ready="true"] [data-runtime-app-action="true"],
body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"],
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] button.btn-pill,
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] .btn-pill[role="button"],
body[data-runtime-shell-ready="true"] [data-runtime-mobile-nav-button="true"],
body[data-runtime-shell-ready="true"] .menu-items,
body[data-runtime-shell-ready="true"] [role="dialog"] > div,
body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[55\] > div,
body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[60\] > div,
body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[70\] > div,
body[data-runtime-shell-ready="true"] textarea[aria-label="聊天消息输入框"],
body[data-runtime-shell-ready="true"] input:not([type="checkbox"]):not([type="radio"]),
body[data-runtime-shell-ready="true"] select {
  background-image: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"]::before,
body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"]::after,
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-root="true"]::before,
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-root="true"]::after,
body[data-runtime-shell-ready="true"] [data-runtime-main-frame="true"]::before,
body[data-runtime-shell-ready="true"] [data-runtime-main-frame="true"]::after,
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"]::before,
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"]::after,
body[data-runtime-shell-ready="true"] [data-runtime-mobile-nav="true"]::before,
body[data-runtime-shell-ready="true"] [data-runtime-mobile-nav="true"]::after,
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"]::before,
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"]::after,
body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"]::before,
body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"]::after {
  background-image: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-main-frame="true"]::before,
body[data-runtime-shell-ready="true"] [data-runtime-main-frame="true"]::after {
  content: none !important;
  display: none !important;
  background: none !important;
  filter: none !important;
  opacity: 0 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] {
  background-color: var(--runtime-surface-panel) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-sidebar-root="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-main="true"] {
  background-color: var(--runtime-surface-shell) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] {
  background-color: var(--runtime-surface-composer) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"],
body[data-runtime-shell-ready="true"] .menu-items,
body[data-runtime-shell-ready="true"] [role="dialog"] > div,
body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[55\] > div,
body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[60\] > div,
body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[70\] > div {
  background-color: var(--runtime-surface-panel) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] button[data-runtime-header-action],
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] .btn-icon,
body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot] > .menu,
body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot] > .cursor-pointer,
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] button,
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [role="button"],
body[data-runtime-shell-ready="true"] [data-runtime-mobile-nav-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="footer"] [role="button"][aria-label="设置"] {
  background-color: var(--runtime-fill-chip) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"]:hover,
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] button[data-runtime-header-action]:hover,
body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] .btn-icon:hover,
body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot] > .menu:hover,
body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot] > .cursor-pointer:hover,
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] button:hover,
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [role="button"]:hover,
body[data-runtime-shell-ready="true"] [data-runtime-mobile-nav-button="true"]:hover,
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="footer"] [role="button"][aria-label="设置"]:hover {
  background-color: var(--runtime-fill-chip-hover) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] .tab-group,
body[data-runtime-shell-ready="true"] [data-runtime-app-action="true"],
body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"] {
  background-color: var(--runtime-surface-card) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"]:hover,
body[data-runtime-shell-ready="true"] [data-runtime-app-action="true"]:hover,
body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"]:hover {
  background-color: var(--runtime-surface-card-hover) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"][aria-selected="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"][aria-checked="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"][aria-pressed="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"].active,
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"].tab-active,
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"][data-runtime-active="true"],
body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"].bg-white,
body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"].text-primary-600,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"].dark\:bg-gray-800,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"].dark\:text-white {
  background-color: var(--runtime-surface-row-active) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-submit="true"] button {
  background-color: var(--runtime-fill-primary) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-submit="true"] button:hover {
  background-color: var(--runtime-fill-primary-hover) !important;
}

/* -------------------
 * 45. Default Theme Search Restore + Borderless Shadow Enforcement
 * ------------------- */

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-page-header="true"],
  [data-runtime-sidebar-root="true"],
  [data-runtime-sidebar-main="true"],
  [data-runtime-sidebar-slot="tabs"] .tab-group,
  [data-runtime-sidebar-tab-button="true"],
  [data-runtime-app-action="true"],
  [data-runtime-conversation-item="true"],
  [data-runtime-composer-input-wrap="true"],
  [data-runtime-composer-toolbar="true"],
  [data-runtime-header-actions="true"],
  [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"],
  [data-runtime-header-actions="true"] button[data-runtime-header-action],
  [data-runtime-header-actions="true"] .btn-icon,
  [data-runtime-header-action-slot] > .menu,
  [data-runtime-header-action-slot] > .cursor-pointer,
  [data-runtime-composer-tools="true"] button,
  [data-runtime-composer-tools="true"] [role="button"],
  [data-runtime-composer-submit="true"] button,
  [data-runtime-sidebar-slot="footer"] [role="button"][aria-label="设置"],
  [data-runtime-mobile-nav="true"],
  [data-runtime-mobile-nav-button="true"],
  .menu-items,
  [role="dialog"] > div,
  .fixed.inset-0.z-\[55\] > div,
  .fixed.inset-0.z-\[60\] > div,
  .fixed.inset-0.z-\[70\] > div,
  textarea[aria-label="聊天消息输入框"],
  input:not([type="checkbox"]):not([type="radio"]),
  select,
  pre
) {
  border: 0 !important;
  outline: 0 !important;
}

body[data-runtime-shell-ready="true"] :is(
  [class*="border"],
  [class*="ring-"],
  [class*="divide-"],
  .border,
  .ring-0,
  .ring-1,
  .ring-2,
  .ring,
  .divide-x,
  .divide-y
) {
  border-color: transparent !important;
  --tw-ring-color: transparent !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-page-header="true"],
  [data-runtime-sidebar-root="true"],
  [data-runtime-sidebar-main="true"],
  [data-runtime-sidebar-slot="tabs"] .tab-group,
  [data-runtime-sidebar-tab-button="true"],
  [data-runtime-app-action="true"],
  [data-runtime-conversation-item="true"],
  [data-runtime-composer-input-wrap="true"],
  [data-runtime-composer-toolbar="true"],
  [data-runtime-header-actions="true"],
  [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"],
  [data-runtime-header-actions="true"] button[data-runtime-header-action],
  [data-runtime-header-actions="true"] .btn-icon,
  [data-runtime-header-action-slot] > .menu,
  [data-runtime-header-action-slot] > .cursor-pointer,
  [data-runtime-composer-tools="true"] button,
  [data-runtime-composer-tools="true"] [role="button"],
  [data-runtime-composer-submit="true"] button,
  [data-runtime-sidebar-slot="footer"] [role="button"][aria-label="设置"],
  [data-runtime-mobile-nav="true"],
  [data-runtime-mobile-nav-button="true"],
  .menu-items,
  [role="dialog"] > div,
  .fixed.inset-0.z-\[55\] > div,
  .fixed.inset-0.z-\[60\] > div,
  .fixed.inset-0.z-\[70\] > div,
  textarea[aria-label="聊天消息输入框"],
  input:not([type="checkbox"]):not([type="radio"]),
  select,
  pre
) {
  box-shadow: var(--runtime-shadow-selected) !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"]:hover,
  [data-runtime-header-actions="true"] button[data-runtime-header-action]:hover,
  [data-runtime-header-actions="true"] .btn-icon:hover,
  [data-runtime-header-action-slot] > .menu:hover,
  [data-runtime-header-action-slot] > .cursor-pointer:hover,
  [data-runtime-composer-tools="true"] button:hover,
  [data-runtime-composer-tools="true"] [role="button"]:hover,
  [data-runtime-sidebar-tab-button="true"]:hover,
  [data-runtime-mobile-nav-button="true"]:hover,
  [data-runtime-sidebar-slot="footer"] [role="button"][aria-label="设置"]:hover,
  [data-runtime-app-action="true"]:hover,
  [data-runtime-conversation-item="true"]:hover,
  [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"][aria-expanded="true"],
  [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"][data-open="true"],
  [data-runtime-header-actions="true"] button[data-runtime-header-action][aria-pressed="true"],
  [data-runtime-header-actions="true"] button[data-runtime-header-action][data-active="true"],
  [data-runtime-mobile-nav-button="true"][data-active="true"],
  [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"][aria-selected="true"],
  [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"][aria-checked="true"],
  [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"][aria-pressed="true"],
  [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"].active,
  [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"].tab-active,
  [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"][data-runtime-active="true"],
  [data-runtime-conversation-item="true"].bg-white,
  [data-runtime-conversation-item="true"].text-primary-600,
  [data-runtime-conversation-item="true"].dark\:bg-gray-800,
  [data-runtime-conversation-item="true"].dark\:text-white
) {
  box-shadow: var(--runtime-shadow-selected) !important;
}

body[data-runtime-shell-ready="true"] :is(
  button:focus-visible,
  [role="button"]:focus-visible,
  a:focus-visible,
  textarea:focus-visible,
  input:focus-visible,
  select:focus-visible
) {
  box-shadow: var(--runtime-shadow-selected) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] {
  display: flex !important;
  flex-wrap: wrap !important;
  overflow: visible !important;
  align-items: center !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] > [data-runtime-composer-search-tool="true"],
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] > .group:has([aria-label="启用或禁用工具功能"]) {
  order: 20 !important;
  flex: 0 0 auto !important;
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: auto !important;
  min-width: 0 !important;
  overflow: visible !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] > [data-runtime-knowledge-base-entry-button="true"] {
  order: 30 !important;
  flex: 0 0 auto !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] > [data-runtime-plugin-tool-entry-root="true"] {
  order: 40 !important;
  flex: 0 0 auto !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [data-runtime-composer-search-tool="true"]:is(button, [role="button"], a),
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [data-runtime-composer-search-tool="true"] :is(button, [role="button"], a),
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [role="button"][aria-label="启用或禁用工具功能"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  width: auto !important;
  min-width: 68px !important;
  padding: 0 10px !important;
  white-space: nowrap !important;
  overflow: visible !important;
  color: var(--runtime-color-text-primary) !important;
  background: var(--runtime-fill-chip) !important;
  box-shadow: var(--runtime-composer-tool-shadow, var(--runtime-shadow-subtle)) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [data-runtime-composer-search-tool="true"]:is(button, [role="button"], a):is([aria-pressed="true"], [data-active="true"], [data-state="active"]),
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [data-runtime-composer-search-tool="true"] :is(button, [role="button"], a):is([aria-pressed="true"], [data-active="true"], [data-state="active"]),
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [role="button"][aria-label="启用或禁用工具功能"]:is([aria-pressed="true"], [data-active="true"], [data-state="active"]) {
  box-shadow: var(--runtime-composer-tool-active-shadow, var(--runtime-shadow-selected)) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [data-runtime-composer-search-tool="true"] .ml-1,
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [role="button"][aria-label="启用或禁用工具功能"] .ml-1 {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-left: 0 !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

@media (max-width: 768px) {
  body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [data-runtime-composer-search-tool="true"]:is(button, [role="button"], a),
  body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [data-runtime-composer-search-tool="true"] :is(button, [role="button"], a),
  body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [role="button"][aria-label="启用或禁用工具功能"] {
    min-width: 60px !important;
    padding: 0 9px !important;
  }

  body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [data-runtime-composer-search-tool="true"] .ml-1,
  body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] [role="button"][aria-label="启用或禁用工具功能"] .ml-1 {
    font-size: 12px !important;
  }
}

/* -------------------
 * 46. Global Frontend Shadow Unification
 * ------------------- */

body[data-runtime-shell-ready="true"] :is(
  .shadow,
  .shadow-sm,
  .shadow-md,
  .shadow-lg,
  .shadow-xl,
  .shadow-2xl,
  [class^="shadow-"],
  [class*=" shadow-"],
  [class*="hover:shadow"],
  .n-card,
  .n-modal,
  .n-drawer,
  .n-popover,
  .n-dialog,
  .n-dropdown-menu,
  .n-base-select-menu,
  .n-select-menu,
  .n-base-selection,
  .n-input,
  .n-button
) {
  box-shadow: var(--runtime-shadow-selected) !important;
}

body[data-runtime-shell-ready="true"] :is(
  .shadow-none,
  [class^="shadow-none"],
  [class*=" shadow-none"]
) {
  box-shadow: none !important;
}

/* -------------------
 * 47. Absolute Frontend Shadow Lock
 * ------------------- */

body[data-runtime-shell-ready="true"] {
  --runtime-shadow-floating: var(--runtime-shadow-selected) !important;
  --runtime-shadow-soft: var(--runtime-shadow-selected) !important;
  --runtime-shadow-strong: var(--runtime-shadow-selected) !important;
  --runtime-shadow-composer: var(--runtime-shadow-selected) !important;
  --runtime-shadow-primary: var(--runtime-shadow-selected) !important;
  --runtime-shell-shadow: var(--runtime-shadow-selected) !important;
  --runtime-shell-card-shadow: var(--runtime-shadow-selected) !important;
  --runtime-shell-card-shadow-strong: var(--runtime-shadow-selected) !important;
  --runtime-v12-card-shadow: var(--runtime-shadow-selected) !important;
  --runtime-v30-button-shadow: var(--runtime-shadow-selected) !important;
  --runtime-v30-button-shadow-strong: var(--runtime-shadow-selected) !important;
  --glass-shadow: var(--runtime-shadow-selected) !important;
  --shadow-convex: var(--runtime-shadow-selected) !important;
  --shadow-concave: var(--runtime-shadow-selected) !important;
  --shadow-flat: var(--runtime-shadow-selected) !important;
  --shadow-concave-shallow: var(--runtime-shadow-selected) !important;
}

body[data-runtime-shell-ready="true"] :is(
  .ai-message .message-content,
  .user-message .message-content,
  .user-message .rounded-2xl:not(.message-content .rounded-2xl),
  .runtime-auth-shell-panel,
  .runtime-auth-shell-input,
  .runtime-knowledge-card,
  .runtime-knowledge-base-item[data-active="true"],
  .doc-preview-pagination-button,
  [data-runtime-plugin-tool-entry-menu="true"],
  [data-runtime-plugin-tool-entry-root="true"][data-runtime-plugin-tool-entry-open="true"] [data-runtime-plugin-tool-entry-button="true"],
  [data-runtime-plugin-tool-entry-item="true"][aria-pressed="true"],
  [data-runtime-knowledge-base-dialog="true"]
) {
  box-shadow: var(--runtime-shadow-selected) !important;
}

/* -------------------
 * 48. Absolute Control Shadow Lock
 * ------------------- */

body[data-runtime-shell-ready="true"] :is(
  button,
  [role="button"],
  .btn,
  .btn-icon,
  .btn-pill,
  .menu-item,
  .menu-item.menu-item-md,
  .h-26.rounded-lg.group.font-medium,
  textarea,
  textarea[aria-label="聊天消息输入框"],
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]),
  select,
  .n-button,
  .n-input,
  .n-base-selection,
  .doc-preview-pagination-button,
  .runtime-auth-shell-input,
  .runtime-auth-shell-primary,
  .runtime-auth-shell-secondary,
  .runtime-knowledge-action-btn,
  .runtime-knowledge-doc-action-btn,
  [data-runtime-chat-export-button="true"],
  [data-runtime-private-chat-entry="true"],
  [data-runtime-plugin-tool-entry-button="true"],
  [data-runtime-plugin-tool-entry-item="true"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-knowledge-base-manage-button="true"],
  [data-runtime-project-action="true"],
  [data-runtime-project-create-button="true"]
) {
  box-shadow: var(--runtime-shadow-selected) !important;
}

body[data-runtime-shell-ready="true"] :is(
  button:hover,
  button:active,
  button:focus,
  button:focus-visible,
  [role="button"]:hover,
  [role="button"]:active,
  [role="button"]:focus,
  [role="button"]:focus-visible,
  .btn:hover,
  .btn:active,
  .btn:focus,
  .btn:focus-visible,
  .btn-icon:hover,
  .btn-icon:active,
  .btn-icon:focus,
  .btn-icon:focus-visible,
  .btn-pill:hover,
  .btn-pill:active,
  .btn-pill:focus,
  .btn-pill:focus-visible,
  .btn-pill.btn-pill-active,
  .btn-pill.btn-pill-active:hover,
  .btn-pill.btn-pill-active:active,
  .menu-item:hover,
  .menu-item:active,
  .menu-item:focus,
  .menu-item:focus-visible,
  .menu-item.menu-item-md:hover,
  .menu-item.menu-item-md:active,
  .menu-item.menu-item-md:focus,
  .menu-item.menu-item-md:focus-visible,
  .h-26.rounded-lg.group.font-medium:hover,
  .h-26.rounded-lg.group.font-medium:active,
  .h-26.rounded-lg.group.font-medium:focus-within,
  .h-26.rounded-lg.group.font-medium:has(button[aria-checked="true"]),
  .h-26.rounded-lg.group.font-medium:has(button[aria-checked="true"]):hover,
  .h-26.rounded-lg.group.font-medium:has(button[aria-checked="true"]):active,
  textarea:hover,
  textarea:focus,
  textarea:focus-visible,
  textarea[aria-label="聊天消息输入框"]:hover,
  textarea[aria-label="聊天消息输入框"]:focus,
  textarea[aria-label="聊天消息输入框"]:focus-visible,
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]):hover,
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]):focus,
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]):focus-visible,
  select:hover,
  select:focus,
  select:focus-visible,
  .n-button:hover,
  .n-button:active,
  .n-button:focus,
  .n-button:focus-visible,
  .n-input:hover,
  .n-input:focus-within,
  .n-base-selection:hover,
  .n-base-selection:focus-within,
  .doc-preview-pagination-button:hover,
  .doc-preview-pagination-button:active,
  .doc-preview-pagination-button:focus,
  .doc-preview-pagination-button:focus-visible,
  .runtime-auth-shell-input:hover,
  .runtime-auth-shell-input:focus,
  .runtime-auth-shell-input:focus-visible,
  .runtime-auth-shell-primary:hover,
  .runtime-auth-shell-primary:active,
  .runtime-auth-shell-primary:focus,
  .runtime-auth-shell-primary:focus-visible,
  .runtime-auth-shell-secondary:hover,
  .runtime-auth-shell-secondary:active,
  .runtime-auth-shell-secondary:focus,
  .runtime-auth-shell-secondary:focus-visible,
  .runtime-knowledge-action-btn:hover,
  .runtime-knowledge-action-btn:active,
  .runtime-knowledge-action-btn:focus,
  .runtime-knowledge-action-btn:focus-visible,
  .runtime-knowledge-doc-action-btn:hover,
  .runtime-knowledge-doc-action-btn:active,
  .runtime-knowledge-doc-action-btn:focus,
  .runtime-knowledge-doc-action-btn:focus-visible,
  [data-runtime-chat-export-button="true"]:hover,
  [data-runtime-chat-export-button="true"]:active,
  [data-runtime-chat-export-button="true"]:focus,
  [data-runtime-chat-export-button="true"]:focus-visible,
  [data-runtime-private-chat-entry="true"]:hover,
  [data-runtime-private-chat-entry="true"]:active,
  [data-runtime-private-chat-entry="true"]:focus,
  [data-runtime-private-chat-entry="true"]:focus-visible,
  [data-runtime-plugin-tool-entry-button="true"]:hover,
  [data-runtime-plugin-tool-entry-button="true"]:active,
  [data-runtime-plugin-tool-entry-button="true"]:focus,
  [data-runtime-plugin-tool-entry-button="true"]:focus-visible,
  [data-runtime-plugin-tool-entry-button="true"][aria-expanded="true"],
  [data-runtime-plugin-tool-entry-item="true"]:hover,
  [data-runtime-plugin-tool-entry-item="true"]:active,
  [data-runtime-plugin-tool-entry-item="true"]:focus,
  [data-runtime-plugin-tool-entry-item="true"]:focus-visible,
  [data-runtime-plugin-tool-entry-item="true"][aria-pressed="true"],
  [data-runtime-knowledge-base-entry-button="true"]:hover,
  [data-runtime-knowledge-base-entry-button="true"]:active,
  [data-runtime-knowledge-base-entry-button="true"]:focus,
  [data-runtime-knowledge-base-entry-button="true"]:focus-visible,
  [data-runtime-knowledge-base-manage-button="true"]:hover,
  [data-runtime-knowledge-base-manage-button="true"]:active,
  [data-runtime-knowledge-base-manage-button="true"]:focus,
  [data-runtime-knowledge-base-manage-button="true"]:focus-visible,
  [data-runtime-project-action="true"]:hover,
  [data-runtime-project-action="true"]:active,
  [data-runtime-project-action="true"]:focus,
  [data-runtime-project-action="true"]:focus-visible,
  [data-runtime-project-create-button="true"]:hover,
  [data-runtime-project-create-button="true"]:active,
  [data-runtime-project-create-button="true"]:focus,
  [data-runtime-project-create-button="true"]:focus-visible
) {
  box-shadow: var(--runtime-shadow-selected) !important;
}

body[data-runtime-shell-ready="true"] :is(
  button[role="switch"],
  [role="switch"],
  button[role="switch"]:hover,
  [role="switch"]:hover,
  button[role="switch"]:focus,
  [role="switch"]:focus,
  button[role="switch"]:focus-visible,
  [role="switch"]:focus-visible,
  button[role="switch"][aria-checked="true"],
  [role="switch"][aria-checked="true"]
) {
  box-shadow: var(--runtime-shadow-selected) !important;
}

body[data-runtime-shell-ready="true"] :is(
  button[role="switch"] span:nth-child(2),
  button[role="switch"] span:nth-child(3),
  [role="switch"] span:nth-child(2),
  [role="switch"] span:nth-child(3),
  button[role="switch"][aria-checked="true"] span:nth-child(2),
  button[role="switch"][aria-checked="true"] span:nth-child(3),
  [role="switch"][aria-checked="true"] span:nth-child(2),
  [role="switch"][aria-checked="true"] span:nth-child(3)
) {
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] :is(
  button:focus-visible,
  [role="button"]:focus-visible,
  textarea:focus-visible,
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]):focus-visible,
  select:focus-visible
) {
  outline: 2px solid rgba(17, 17, 17, 0.18) !important;
  outline-offset: 1px !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  button:focus-visible,
  [role="button"]:focus-visible,
  textarea:focus-visible,
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]):focus-visible,
  select:focus-visible
) {
  outline-color: rgba(255, 255, 255, 0.18) !important;
}

/* -------------------
 * 49. Default Theme V2 Final Baseline
 * ------------------- */

:root {
  --runtime-canvas-bg: #ffffff !important;
  --runtime-surface-base: #ffffff !important;
  --runtime-surface-shell: #ebebeb !important;
  --runtime-surface-panel: #ffffff !important;
  --runtime-surface-card: #f3f3f3 !important;
  --runtime-surface-card-hover: #ebebeb !important;
  --runtime-surface-card-active: #dddddd !important;
  --runtime-surface-composer: #ffffff !important;
  --runtime-surface-menu: #ffffff !important;
  --runtime-surface-row-hover: #ebebeb !important;
  --runtime-surface-row-active: #dddddd !important;
  --runtime-fill-toolbar: #f3f3f3 !important;
  --runtime-fill-chip: #f3f3f3 !important;
  --runtime-fill-chip-hover: #ebebeb !important;
  --runtime-fill-primary: #111111 !important;
  --runtime-fill-primary-hover: #1d1d1d !important;
  --runtime-color-text-primary: #111111 !important;
  --runtime-color-text-secondary: rgba(17, 17, 17, 0.72) !important;
  --runtime-color-text-tertiary: rgba(17, 17, 17, 0.48) !important;
  --runtime-color-text-inverse: #f5f5f5 !important;
  --runtime-color-accent: #111111 !important;
  --runtime-divider: rgba(17, 17, 17, 0.08) !important;
  --runtime-shell-accent: rgba(17, 17, 17, 0.06) !important;
  --sidebar-bg: #ebebeb !important;
  --theme-bg: #ffffff !important;
  --theme-text: #111111 !important;
  --theme-primary: rgba(17, 17, 17, 0.72) !important;
  color-scheme: light !important;
}

html.dark {
  --runtime-canvas-bg: #101010 !important;
  --runtime-surface-base: #111111 !important;
  --runtime-surface-shell: #161616 !important;
  --runtime-surface-panel: #111111 !important;
  --runtime-surface-card: #1d1d1d !important;
  --runtime-surface-card-hover: #262626 !important;
  --runtime-surface-card-active: #313131 !important;
  --runtime-surface-composer: #111111 !important;
  --runtime-surface-menu: #111111 !important;
  --runtime-surface-row-hover: #262626 !important;
  --runtime-surface-row-active: #313131 !important;
  --runtime-fill-toolbar: #1d1d1d !important;
  --runtime-fill-chip: #1d1d1d !important;
  --runtime-fill-chip-hover: #262626 !important;
  --runtime-fill-primary: #f3f3f3 !important;
  --runtime-fill-primary-hover: #ffffff !important;
  --runtime-color-text-primary: #f3f3f3 !important;
  --runtime-color-text-secondary: rgba(243, 243, 243, 0.84) !important;
  --runtime-color-text-tertiary: rgba(243, 243, 243, 0.56) !important;
  --runtime-color-text-inverse: #111111 !important;
  --runtime-color-accent: #f3f3f3 !important;
  --runtime-divider: rgba(255, 255, 255, 0.08) !important;
  --runtime-shell-accent: rgba(255, 255, 255, 0.08) !important;
  --sidebar-bg: #161616 !important;
  --theme-bg: #111111 !important;
  --theme-text: #f3f3f3 !important;
  --theme-primary: rgba(243, 243, 243, 0.84) !important;
  color-scheme: dark !important;
}

body[data-runtime-shell-ready="true"] {
  color: var(--runtime-color-text-primary) !important;
  background: var(--runtime-canvas-bg) !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-main-frame="true"],
  main,
  .n-layout,
  .n-layout-content,
  [data-runtime-page-header="true"],
  [data-runtime-sidebar-root="true"],
  [data-runtime-sidebar-main="true"],
  [data-runtime-composer-card="true"],
  [data-runtime-composer-toolbar="true"],
  [data-runtime-composer-input-wrap="true"],
  [data-runtime-mobile-nav="true"],
  .menu-items,
  [role="dialog"] > div,
  .fixed.inset-0.z-\[55\] > div,
  .fixed.inset-0.z-\[60\] > div,
  .fixed.inset-0.z-\[70\] > div,
  .runtime-auth-shell-panel,
  .runtime-knowledge-card,
  .runtime-knowledge-base-item,
  .runtime-knowledge-base-list,
  [data-runtime-knowledge-base-dialog="true"],
  [data-runtime-plugin-tool-entry-menu="true"],
  [data-runtime-plugin-tool-entry-button="true"],
  [data-runtime-plugin-tool-entry-item="true"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-knowledge-base-manage-button="true"],
  [data-runtime-chat-export-button="true"],
  [data-runtime-private-chat-entry="true"],
  [data-runtime-project-action="true"],
  [data-runtime-project-create-button="true"],
  .menu-item,
  .menu-item.menu-item-md,
  textarea[aria-label="聊天消息输入框"],
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]),
  select,
  pre,
  code
) {
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-page-header="true"],
  [data-runtime-sidebar-root="true"],
  [data-runtime-sidebar-main="true"],
  [data-runtime-composer-card="true"],
  [data-runtime-mobile-nav="true"],
  [data-runtime-page-header="true"]::before,
  [data-runtime-page-header="true"]::after,
  [data-runtime-sidebar-root="true"]::before,
  [data-runtime-sidebar-root="true"]::after,
  [data-runtime-sidebar-main="true"]::before,
  [data-runtime-sidebar-main="true"]::after,
  [data-runtime-composer-card="true"]::before,
  [data-runtime-composer-card="true"]::after,
  [data-runtime-mobile-nav="true"]::before,
  [data-runtime-mobile-nav="true"]::after,
  [data-runtime-header-actions="true"]::before,
  [data-runtime-header-actions="true"]::after,
  [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"]::before,
  [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"]::after
) {
  background-image: none !important;
  filter: none !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-page-header="true"]::before,
  [data-runtime-page-header="true"]::after,
  [data-runtime-sidebar-root="true"]::before,
  [data-runtime-sidebar-root="true"]::after,
  [data-runtime-sidebar-main="true"]::before,
  [data-runtime-sidebar-main="true"]::after,
  [data-runtime-composer-card="true"]::before,
  [data-runtime-composer-card="true"]::after,
  [data-runtime-mobile-nav="true"]::before,
  [data-runtime-mobile-nav="true"]::after,
  [data-runtime-header-actions="true"]::before,
  [data-runtime-header-actions="true"]::after,
  [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"]::before,
  [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"]::after
) {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-main-frame="true"],
body[data-runtime-shell-ready="true"] main,
body[data-runtime-shell-ready="true"] .n-layout,
body[data-runtime-shell-ready="true"] .n-layout-content {
  background-color: var(--runtime-surface-base) !important;
  color: var(--runtime-sidebar-conversation-hover-color, rgba(17, 17, 17, 0.72)) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-sidebar-root="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-main="true"],
body[data-runtime-shell-ready="true"] [data-runtime-mobile-nav="true"] {
  background-color: var(--runtime-surface-shell) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"],
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"],
body[data-runtime-shell-ready="true"] .menu-items,
body[data-runtime-shell-ready="true"] [role="dialog"] > div,
body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[55\] > div,
body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[60\] > div,
body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[70\] > div,
body[data-runtime-shell-ready="true"] .runtime-auth-shell-panel,
body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"],
body[data-runtime-shell-ready="true"] [data-runtime-plugin-tool-entry-menu="true"] {
  background-color: var(--runtime-surface-panel) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"],
body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"],
body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot] {
  background: transparent !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"],
  [data-runtime-header-actions="true"] button[data-runtime-header-action],
  [data-runtime-header-actions="true"] .btn-icon,
  [data-runtime-header-action-slot] > .menu,
  [data-runtime-header-action-slot] > .cursor-pointer,
  [data-runtime-composer-tools="true"] button,
  [data-runtime-composer-tools="true"] [role="button"],
  [data-runtime-composer-submit="true"] button:not(.btn-send),
  [data-runtime-mobile-nav-button="true"],
  [data-runtime-sidebar-slot="footer"] [role="button"][aria-label="设置"],
  [data-runtime-chat-export-button="true"],
  [data-runtime-private-chat-entry="true"],
  [data-runtime-plugin-tool-entry-button="true"],
  [data-runtime-plugin-tool-entry-item="true"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-knowledge-base-manage-button="true"],
  [data-runtime-project-action="true"],
  [data-runtime-project-create-button="true"],
  .runtime-knowledge-action-btn,
  .runtime-knowledge-doc-action-btn,
  .runtime-auth-shell-secondary,
  .runtime-auth-shell-input,
  .menu-item,
  .menu-item.menu-item-md
) {
  background-color: var(--runtime-fill-chip) !important;
  color: var(--runtime-color-text-primary) !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"]:hover,
  [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"][aria-expanded="true"],
  [data-runtime-header-actions="true"] button[data-runtime-header-action]:hover,
  [data-runtime-header-actions="true"] button[data-runtime-header-action][aria-pressed="true"],
  [data-runtime-header-actions="true"] .btn-icon:hover,
  [data-runtime-header-action-slot] > .menu:hover,
  [data-runtime-header-action-slot] > .cursor-pointer:hover,
  [data-runtime-composer-tools="true"] button:hover,
  [data-runtime-composer-tools="true"] [role="button"]:hover,
  [data-runtime-composer-submit="true"] button:not(.btn-send):hover,
  [data-runtime-mobile-nav-button="true"]:hover,
  [data-runtime-mobile-nav-button="true"][data-active="true"],
  [data-runtime-sidebar-slot="footer"] [role="button"][aria-label="设置"]:hover,
  [data-runtime-chat-export-button="true"]:hover,
  [data-runtime-private-chat-entry="true"]:hover,
  [data-runtime-plugin-tool-entry-button="true"]:hover,
  [data-runtime-plugin-tool-entry-button="true"][aria-expanded="true"],
  [data-runtime-plugin-tool-entry-item="true"]:hover,
  [data-runtime-plugin-tool-entry-item="true"][aria-pressed="true"],
  [data-runtime-knowledge-base-entry-button="true"]:hover,
  [data-runtime-knowledge-base-manage-button="true"]:hover,
  [data-runtime-project-action="true"]:hover,
  [data-runtime-project-create-button="true"]:hover,
  .menu-item:hover,
  .menu-item.menu-item-md:hover
) {
  background-color: var(--runtime-fill-chip-hover) !important;
  color: var(--runtime-color-text-primary) !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-sidebar-slot="tabs"] .tab-group,
  [data-runtime-app-action="true"],
  [data-runtime-conversation-item="true"],
  .runtime-knowledge-card,
  .runtime-knowledge-base-item,
  .runtime-auth-shell-primary
) {
  background-color: var(--runtime-surface-card) !important;
  color: var(--runtime-color-text-primary) !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"]:hover,
  [data-runtime-app-action="true"]:hover,
  [data-runtime-conversation-item="true"]:hover,
  .runtime-knowledge-card:hover,
  .runtime-knowledge-base-item:hover
) {
  background-color: var(--runtime-surface-card-hover) !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"][aria-selected="true"],
  [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"][aria-checked="true"],
  [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"][aria-pressed="true"],
  [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"].active,
  [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"].tab-active,
  [data-runtime-sidebar-slot="tabs"] [data-runtime-sidebar-tab-button="true"][data-runtime-active="true"],
  [data-runtime-conversation-item="true"].bg-white,
  [data-runtime-conversation-item="true"].text-primary-600,
  [data-runtime-conversation-item="true"].dark\:bg-gray-800,
  [data-runtime-conversation-item="true"].dark\:text-white,
  .runtime-knowledge-base-item[data-active="true"]
) {
  background-color: var(--runtime-surface-row-active) !important;
  color: var(--runtime-color-text-primary) !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  textarea[aria-label="聊天消息输入框"],
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]),
  select
) {
  background-color: var(--runtime-surface-base) !important;
  color: var(--runtime-sidebar-conversation-active-color, rgba(17, 17, 17, 0.88)) !important;
}

body[data-runtime-shell-ready="true"] :is(
  textarea[aria-label="聊天消息输入框"]::placeholder,
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"])::placeholder
) {
  color: var(--runtime-color-text-tertiary) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-submit="true"] .btn-send,
body[data-runtime-shell-ready="true"] .runtime-auth-shell-primary {
  background-color: var(--runtime-fill-primary) !important;
  color: var(--runtime-color-text-inverse) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-submit="true"] .btn-send:hover,
body[data-runtime-shell-ready="true"] .runtime-auth-shell-primary:hover {
  background-color: var(--runtime-fill-primary-hover) !important;
  color: var(--runtime-color-text-inverse) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-submit="true"] .btn-send,
html.dark body[data-runtime-shell-ready="true"] .runtime-auth-shell-primary {
  color: #111111 !important;
}

body[data-runtime-shell-ready="true"] .ai-message :is(.message-content, .markdown-body),
body[data-runtime-shell-ready="true"] .user-message :is(.message-content, .rounded-2xl),
body[data-runtime-shell-ready="true"] #image-wrapper .flex.w-full.my-2.pb-3.items-start.flex-row .markdown-body,
body[data-runtime-shell-ready="true"] #image-wrapper .flex.w-full.my-2.pb-3.items-start.flex-row .rounded-2xl.text-base.break-words.whitespace-pre-wrap {
  background-color: #ffffff !important;
  color: #111111 !important;
  border: none !important;
  border-radius: 15px !important;
  box-shadow: var(--runtime-shadow-selected) !important;
}

html.dark body[data-runtime-shell-ready="true"] .ai-message :is(.message-content, .markdown-body),
html.dark body[data-runtime-shell-ready="true"] .user-message :is(.message-content, .rounded-2xl),
html.dark body[data-runtime-shell-ready="true"] #image-wrapper .flex.w-full.my-2.pb-3.items-start.flex-row .markdown-body,
html.dark body[data-runtime-shell-ready="true"] #image-wrapper .flex.w-full.my-2.pb-3.items-start.flex-row .rounded-2xl.text-base.break-words.whitespace-pre-wrap {
  background-color: #1d1d1d !important;
  color: #f3f3f3 !important;
  border: none !important;
  border-radius: 15px !important;
  box-shadow: var(--runtime-shadow-selected) !important;
}

body[data-runtime-shell-ready="true"] :is(pre, .markdown-body pre) {
  background-color: #f3f3f3 !important;
  color: #111111 !important;
}

body[data-runtime-shell-ready="true"] :is(code, .markdown-body code):not(pre code) {
  background-color: #ebebeb !important;
  color: #111111 !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(pre, .markdown-body pre) {
  background-color: #1d1d1d !important;
  color: #f3f3f3 !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(code, .markdown-body code):not(pre code) {
  background-color: #262626 !important;
  color: #f3f3f3 !important;
}

body[data-runtime-shell-ready="true"] :is(
  .markdown-body th,
  .markdown-body td,
  .markdown-body tr,
  .markdown-body table
) {
  border: 0 !important;
}

body[data-runtime-shell-ready="true"] :is(
  .markdown-body a,
  a[data-runtime-history-search-source="true"]
) {
  color: var(--runtime-color-text-primary) !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-section-header],
  [data-runtime-history-date-heading="true"],
  [data-runtime-history-search-meta="true"],
  [data-runtime-history-search-snippet="true"],
  [data-runtime-sidebar-quota="true"],
  [data-runtime-sidebar-settings="true"]
) {
  color: var(--runtime-sidebar-action-color, #111111) !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-page-header="true"],
  [data-runtime-sidebar-root="true"],
  [data-runtime-sidebar-main="true"],
  [data-runtime-composer-card="true"],
  [data-runtime-header-actions="true"],
  [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"],
  [data-runtime-header-actions="true"] button[data-runtime-header-action],
  [data-runtime-header-actions="true"] .btn-icon,
  [data-runtime-header-action-slot] > .menu,
  [data-runtime-header-action-slot] > .cursor-pointer,
  [data-runtime-composer-tools="true"] button,
  [data-runtime-composer-tools="true"] [role="button"],
  [data-runtime-composer-submit="true"] button,
  [data-runtime-mobile-nav-button="true"],
  [data-runtime-sidebar-slot="tabs"] .tab-group,
  [data-runtime-app-action="true"],
  [data-runtime-conversation-item="true"],
  [data-runtime-chat-export-button="true"],
  [data-runtime-private-chat-entry="true"],
  [data-runtime-plugin-tool-entry-button="true"],
  [data-runtime-plugin-tool-entry-item="true"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-knowledge-base-manage-button="true"],
  [data-runtime-project-action="true"],
  [data-runtime-project-create-button="true"],
  .menu-items,
  .menu-item,
  .menu-item.menu-item-md
):is(:hover, :active, :focus, :focus-visible) {
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="footer"] :is(
  button,
  [role="button"]
)[aria-label="设置"],
body[data-runtime-shell-ready="true"] button[aria-label="设置"]:has(img[alt="用户头像"]),
body[data-runtime-shell-ready="true"] button:has(img[alt="用户头像"]) {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="footer"] :is(
  button,
  [role="button"]
)[aria-label="设置"]:is(:hover, :active, :focus, :focus-visible),
body[data-runtime-shell-ready="true"] button[aria-label="设置"]:has(img[alt="用户头像"]):is(:hover, :active, :focus, :focus-visible),
body[data-runtime-shell-ready="true"] button:has(img[alt="用户头像"]):is(:hover, :active, :focus, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="footer"] :is(
  button,
  [role="button"]
)[aria-label="设置"] img[alt="用户头像"],
body[data-runtime-shell-ready="true"] button[aria-label="设置"] img[alt="用户头像"] {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 999px !important;
}

/* -------------------
 * 50. Default Theme V2 Message + Code Fallback
 * ------------------- */

body[data-runtime-shell-ready="true"] :is(
  .ai-message .message-content,
  .ai-message .markdown-body:not(.message-content .markdown-body),
  .user-message .message-content,
  .user-message .rounded-2xl:not(.message-content .rounded-2xl)
) {
  background-color: #ffffff !important;
  color: #111111 !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .ai-message .message-content,
  .ai-message .markdown-body:not(.message-content .markdown-body),
  .user-message .message-content,
  .user-message .rounded-2xl:not(.message-content .rounded-2xl)
) {
  background-color: #1d1d1d !important;
  color: #f3f3f3 !important;
}

body[data-runtime-shell-ready="true"] :is(pre, .markdown-body pre) {
  background-color: #f3f3f3 !important;
  color: #111111 !important;
}

body[data-runtime-shell-ready="true"] :is(code, .markdown-body code):not(pre code) {
  background-color: #ebebeb !important;
  color: #111111 !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(pre, .markdown-body pre) {
  background-color: #1d1d1d !important;
  color: #f3f3f3 !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(code, .markdown-body code):not(pre code) {
  background-color: #262626 !important;
  color: #f3f3f3 !important;
}

/* -------------------
 * 51. Sidebar Header Collapse Button Cleanup
 * ------------------- */

[data-runtime-sidebar-slot="header"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="header"] {
  padding: 10px 14px 10px !important;
}

[data-runtime-sidebar-brand="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-brand="true"] {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
}

[data-runtime-sidebar-slot="header"] [data-runtime-sidebar-brand-logo="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="header"] [data-runtime-sidebar-brand-logo="true"] {
  margin: 0 !important;
}

[data-runtime-sidebar-slot="header"] [data-runtime-sidebar-collapse-button="true"],
[data-runtime-sidebar-root="true"] button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"],
button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="header"] [data-runtime-sidebar-collapse-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-root="true"] button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;
  margin: 0 0 0 auto !important;
  padding: 0 !important;
  width: 30px !important;
  min-width: 30px !important;
  max-width: 30px !important;
  height: 30px !important;
  min-height: 30px !important;
  max-height: 30px !important;
  border: 0 !important;
  border-radius: 10px !important;
  outline: none !important;
  appearance: none !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  color: var(--runtime-shell-title) !important;
  cursor: default !important;
  transform: none !important;
  transform-origin: center center !important;
  transition: none !important;
  will-change: auto !important;
  filter: none !important;
}

[data-runtime-sidebar-slot="header"] [data-runtime-sidebar-collapse-button="true"]:is(:hover, :active, :focus, :focus-visible),
[data-runtime-sidebar-slot="header"] [data-runtime-sidebar-collapse-button="true"][aria-pressed="true"],
[data-runtime-sidebar-slot="header"] [data-runtime-sidebar-collapse-button="true"][aria-expanded="true"],
[data-runtime-sidebar-slot="header"] [data-runtime-sidebar-collapse-button="true"][data-active="true"],
[data-runtime-sidebar-root="true"] button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"]:is(:hover, :active, :focus, :focus-visible),
[data-runtime-sidebar-root="true"] button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"][aria-pressed="true"],
[data-runtime-sidebar-root="true"] button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"][aria-expanded="true"],
button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"]:is(:hover, :active, :focus, :focus-visible),
button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"][aria-pressed="true"],
button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"][aria-expanded="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="header"] [data-runtime-sidebar-collapse-button="true"]:is(:hover, :active, :focus, :focus-visible),
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="header"] [data-runtime-sidebar-collapse-button="true"][aria-pressed="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="header"] [data-runtime-sidebar-collapse-button="true"][aria-expanded="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="header"] [data-runtime-sidebar-collapse-button="true"][data-active="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-root="true"] button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"]:is(:hover, :active, :focus, :focus-visible),
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-root="true"] button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"][aria-pressed="true"],
body[data-runtime-shell-ready="true"] [data-runtime-sidebar-root="true"] button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"][aria-expanded="true"] {
  border: 0 !important;
  outline: none !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  color: var(--runtime-shell-title) !important;
  transform: none !important;
  transition: none !important;
  filter: none !important;
}

div.relative.group:has(> button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"]) {
  display: flex !important;
  align-items: center !important;
  min-height: 30px !important;
  margin: 0 !important;
}

[data-runtime-sidebar-root="true"] button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"]::before,
[data-runtime-sidebar-root="true"] button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"]::after,
button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"]::before,
button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"]::after {
  content: none !important;
  display: none !important;
}

[data-runtime-sidebar-root="true"] button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"] > .i-icon,
button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"] > .i-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 20px !important;
  height: 20px !important;
  transform: none !important;
  transition: none !important;
}

[data-runtime-sidebar-root="true"] button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"] > .i-icon svg,
button.btn-icon.btn-icon-collapse[aria-label="折叠侧栏"] > .i-icon svg {
  width: 20px !important;
  height: 20px !important;
}

html body button.btn-icon.btn-icon-collapse.btn-md[type="button"][aria-label="折叠侧栏"],
html body [data-runtime-sidebar-root="true"] button.btn-icon.btn-icon-collapse.btn-md[type="button"][aria-label="折叠侧栏"] {
  box-shadow: none !important;
}

html body button.btn-icon.btn-icon-collapse.btn-md[type="button"][aria-label="折叠侧栏"]:is(:hover, :active, :focus, :focus-visible),
html body button.btn-icon.btn-icon-collapse.btn-md[type="button"][aria-label="折叠侧栏"][aria-expanded="true"],
html body button.btn-icon.btn-icon-collapse.btn-md[type="button"][aria-label="折叠侧栏"][aria-pressed="true"],
html body [data-runtime-sidebar-root="true"] button.btn-icon.btn-icon-collapse.btn-md[type="button"][aria-label="折叠侧栏"]:is(:hover, :active, :focus, :focus-visible),
html body [data-runtime-sidebar-root="true"] button.btn-icon.btn-icon-collapse.btn-md[type="button"][aria-label="折叠侧栏"][aria-expanded="true"],
html body [data-runtime-sidebar-root="true"] button.btn-icon.btn-icon-collapse.btn-md[type="button"][aria-label="折叠侧栏"][aria-pressed="true"] {
  box-shadow: none !important;
}

/* -------------------
 * 52. Sidebar Minimalism
 * ------------------- */

body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  margin: 0 0 6px !important;
  padding: 0 !important;
}

body[data-runtime-shell-ready="true"] div.custom-scrollbar.px-4.overflow-y-auto.h-full > div.flex.flex-col.gap-3.text-sm,
body[data-runtime-shell-ready="true"] div.custom-scrollbar.flex.flex-col.gap-3.px-4.py-1.overflow-y-auto.h-full > div.flex.flex-col.gap-3.text-sm,
body[data-runtime-shell-ready="true"] {
  gap: 0 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-slot] {
  display: block !important;
  width: 100% !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
) {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  width: 100% !important;
  min-height: 34px !important;
  padding: 2px 10px 2px 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 11px !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: rgba(17, 17, 17, 0.9) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  transform: none !important;
  transition: background 0.16s ease, color 0.16s ease, opacity 0.16s ease, box-shadow 0.16s ease !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
) :is(svg, span) {
  color: inherit !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
)[data-runtime-top-action-pointer-over="true"] {
  background: rgba(17, 17, 17, 0.06) !important;
  background-color: rgba(17, 17, 17, 0.06) !important;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.04) !important;
  color: #050505 !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
):is(:active, [data-runtime-top-action-state="active"]) {
  background: rgba(17, 17, 17, 0.1) !important;
  background-color: rgba(17, 17, 17, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08) !important;
  color: #050505 !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
)[data-runtime-top-action-pointer-over="true"] {
  background: rgba(17, 17, 17, 0.06) !important;
  background-color: rgba(17, 17, 17, 0.06) !important;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.04) !important;
  color: #050505 !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
) {
  color: rgba(243, 243, 243, 0.88) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
)[data-runtime-top-action-pointer-over="true"] {
  background: rgba(255, 255, 255, 0.1) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
):is(:active, [data-runtime-top-action-state="active"]) {
  background: rgba(255, 255, 255, 0.16) !important;
  background-color: rgba(255, 255, 255, 0.16) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
) > span[aria-hidden="true"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--runtime-sidebar-top-action-icon-size, 30px) !important;
  height: var(--runtime-sidebar-top-action-icon-size, 30px) !important;
  min-width: var(--runtime-sidebar-top-action-icon-size, 30px) !important;
  flex: 0 0 var(--runtime-sidebar-top-action-icon-size, 30px) !important;
  line-height: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: currentColor !important;
  opacity: 0.92 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
) > span[aria-hidden="true"] :is(svg, .i-icon) {
  width: var(--runtime-sidebar-top-action-icon-size, 30px) !important;
  height: var(--runtime-sidebar-top-action-icon-size, 30px) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
) > span:not([aria-hidden="true"]) {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-date-heading="true"] {
  margin: 3px 0 1px !important;
  padding: 0 !important;
  color: var(--runtime-sidebar-heading-color, #111111) !important;
  opacity: 1 !important;
  font-size: 11px !important;
  line-height: 1.25 !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-date-heading="true"] {
  color: var(--runtime-sidebar-heading-color, #f3f3f3) !important;
  opacity: 1 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"] {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  margin: 3px 0 1px !important;
  padding: 0 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"] :is(button, span, p) {
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"] button {
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-sidebar-heading-color, #111111) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"] button[aria-expanded] {
  font-size: 12px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"] button {
  color: var(--runtime-sidebar-heading-color, #f3f3f3) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-load-more="true"] {
  width: 100% !important;
  margin: 4px 0 10px !important;
  padding: 4px 8px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: rgba(17, 17, 17, 0.54) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-load-more="true"] {
  color: rgba(243, 243, 243, 0.54) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"]) {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  margin: 3px 0 1px !important;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"]) > div:first-child {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"]) > div:first-child > button:first-child:has(+ button[aria-expanded]) {
  display: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"]) > div:first-child > :is(button[aria-expanded]:not(:has(+ button[aria-expanded])), [data-runtime-project-section-title="true"]) {
  min-width: 0 !important;
  flex: 1 1 auto !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-heading-color, #111111) !important;
  opacity: 1 !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-align: left !important;
  cursor: default !important;
  pointer-events: none !important;
  transform: none !important;
  transition: color 0.16s ease, opacity 0.16s ease !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"]) > [data-runtime-project-section-toggle-button="true"] {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  margin-left: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-heading-color, #111111) !important;
  opacity: 1 !important;
  cursor: pointer !important;
  transform: none !important;
  will-change: auto !important;
  transition: background-color 0.16s ease, color 0.16s ease, opacity 0.16s ease !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"]) > [data-runtime-project-section-toggle-button="true"]:is(:hover, :focus, :focus-visible) {
  background: rgba(17, 17, 17, 0.045) !important;
  background-color: rgba(17, 17, 17, 0.045) !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-heading-color, #111111) !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"]) > [data-runtime-project-section-toggle-button="true"]:active {
  background: rgba(17, 17, 17, 0.085) !important;
  background-color: rgba(17, 17, 17, 0.085) !important;
  box-shadow: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"]) > [data-runtime-project-section-menu-root="true"] {
  display: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"])::after {
  content: none !important;
  display: none !important;
  pointer-events: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"]):has(> div:first-child > button[aria-expanded="false"])::after {
  content: none !important;
  display: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"]) > div:first-child > :is(button[aria-expanded]:not(:has(+ button[aria-expanded])), [data-runtime-project-section-title="true"]) {
  color: var(--runtime-sidebar-heading-color, #f3f3f3) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"]) > [data-runtime-project-section-toggle-button="true"] {
  color: var(--runtime-sidebar-heading-color, #f3f3f3) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"]) > [data-runtime-project-section-toggle-button="true"]:is(:hover, :focus, :focus-visible) {
  background: rgba(243, 243, 243, 0.075) !important;
  background-color: rgba(243, 243, 243, 0.075) !important;
  color: var(--runtime-sidebar-heading-color, #f3f3f3) !important;
  transform: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"])::after {
  color: rgba(243, 243, 243, 0.62) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"] {
  background: transparent !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-conversation-color, rgba(17, 17, 17, 0.46)) !important;
  transition: color 0.16s ease, opacity 0.16s ease !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-conversation-item="true"],
  [data-runtime-history-synthetic-wrapper="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer
) {
  margin: 0 !important;
  padding: 4px 0 !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-conversation-item="true"],
  [data-runtime-history-synthetic-wrapper="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer
) :is(span, p, .truncate, .max-w-48, .flex-1) {
  color: inherit !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"]::before,
body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"]::after {
  content: none !important;
  display: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"]:hover {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-conversation-hover-color, rgba(17, 17, 17, 0.72)) !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-conversation-item="true"].bg-white,
  [data-runtime-conversation-item="true"].text-primary-600,
  [data-runtime-conversation-item="true"].dark\:bg-gray-800,
  [data-runtime-conversation-item="true"].dark\:text-white
) {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-conversation-active-color, rgba(17, 17, 17, 0.88)) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"] {
  color: var(--runtime-sidebar-conversation-color, rgba(243, 243, 243, 0.5)) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"]:hover {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-sidebar-conversation-hover-color, rgba(243, 243, 243, 0.74)) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-conversation-item="true"].bg-white,
  [data-runtime-conversation-item="true"].text-primary-600,
  [data-runtime-conversation-item="true"].dark\:bg-gray-800,
  [data-runtime-conversation-item="true"].dark\:text-white
) {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-sidebar-conversation-active-color, rgba(243, 243, 243, 0.92)) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"] .absolute.z-10.right-2.flex.items-center.h-full :is(button, [role="button"], .menu, .cursor-pointer):not(.menu-items):not(.menu-item) {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"] .absolute.z-10.right-2.flex.items-center.h-full :is(button, [role="button"], .menu, .cursor-pointer):not(.menu-items):not(.menu-item):hover {
  background: rgba(17, 17, 17, 0.08) !important;
  background-color: rgba(17, 17, 17, 0.08) !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"] .absolute.z-10.right-2.flex.items-center.h-full :is(button, [role="button"], .menu, .cursor-pointer):not(.menu-items):not(.menu-item):hover {
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}

html body [data-runtime-history-top-action-group="true"] :is(
  button[data-runtime-history-new-chat-button="true"],
  button[data-runtime-history-search-button="true"],
  button[data-runtime-project-create-button="true"],
  button[data-runtime-history-app-market-button="true"]
),
html body [data-runtime-history-top-action-group="true"] :is(
  button[data-runtime-history-new-chat-button="true"],
  button[data-runtime-history-search-button="true"],
  button[data-runtime-project-create-button="true"],
  button[data-runtime-history-app-market-button="true"]
):is(:hover, :active, :focus, :focus-visible) {
  box-shadow: none !important;
}

html body [data-runtime-history-top-action-group="true"] :is(
  button[data-runtime-history-new-chat-button="true"][data-runtime-top-action-key][data-runtime-top-action-label],
  button[data-runtime-history-search-button="true"][data-runtime-top-action-key][data-runtime-top-action-label],
  button[data-runtime-project-create-button="true"][data-runtime-top-action-key][data-runtime-top-action-label],
  button[data-runtime-history-app-market-button="true"][data-runtime-top-action-key][data-runtime-top-action-label]
),
html body [data-runtime-history-top-action-group="true"] :is(
  button[data-runtime-history-new-chat-button="true"][data-runtime-top-action-key][data-runtime-top-action-label],
  button[data-runtime-history-search-button="true"][data-runtime-top-action-key][data-runtime-top-action-label],
  button[data-runtime-project-create-button="true"][data-runtime-top-action-key][data-runtime-top-action-label],
  button[data-runtime-history-app-market-button="true"][data-runtime-top-action-key][data-runtime-top-action-label]
):is(:hover, :active, :focus, :focus-visible) {
  box-shadow: none !important;
}

html body [data-runtime-history-synthetic-wrapper="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  color: var(--runtime-sidebar-conversation-color, rgba(17, 17, 17, 0.46)) !important;
}

html body [data-runtime-history-synthetic-wrapper="true"][data-runtime-history-active="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-sidebar-conversation-active-color, rgba(17, 17, 17, 0.88)) !important;
}

html body [data-runtime-history-synthetic-wrapper="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer:hover {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-conversation-hover-color, rgba(17, 17, 17, 0.72)) !important;
}

html.dark body [data-runtime-history-synthetic-wrapper="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer {
  color: var(--runtime-sidebar-conversation-color, rgba(243, 243, 243, 0.5)) !important;
}

html.dark body [data-runtime-history-synthetic-wrapper="true"][data-runtime-history-active="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-sidebar-conversation-active-color, rgba(243, 243, 243, 0.92)) !important;
}

html.dark body [data-runtime-history-synthetic-wrapper="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer:hover {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-sidebar-conversation-hover-color, rgba(243, 243, 243, 0.74)) !important;
}

html body [data-runtime-history-synthetic-wrapper="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer .menu.relative > button[data-runtime-group-project-action="true"],
html body [data-runtime-history-synthetic-wrapper="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer .menu.relative > button[data-runtime-group-project-action="true"]:hover {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

html body [data-runtime-history-synthetic-wrapper="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer .menu.relative > button[data-runtime-group-project-action="true"] {
  opacity: 0 !important;
  pointer-events: none !important;
}

html body [data-runtime-history-synthetic-wrapper="true"]:hover > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer .menu.relative > button[data-runtime-group-project-action="true"],
html body [data-runtime-history-synthetic-wrapper="true"][data-runtime-history-active="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer .menu.relative > button[data-runtime-group-project-action="true"] {
  opacity: 0.7 !important;
  pointer-events: auto !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"] .absolute.z-10.right-2.flex.items-center.h-full,
body[data-runtime-shell-ready="true"] [data-runtime-history-synthetic-wrapper="true"] .menu.relative,
body[data-runtime-shell-ready="true"] [data-runtime-history-synthetic-wrapper="true"] [data-runtime-group-project-action="true"],
body[data-runtime-shell-ready="true"] [data-runtime-conversation-item="true"] [aria-haspopup="true"][aria-label*="操作"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-group-key] .absolute.z-10.right-2.flex.items-center.h-full,
body[data-runtime-shell-ready="true"] [data-runtime-history-group-key] .menu.relative,
body[data-runtime-shell-ready="true"] [data-runtime-history-group-key] [data-runtime-group-project-action="true"],
body[data-runtime-shell-ready="true"] [data-runtime-history-group-key] [aria-haspopup="true"][aria-label*="操作"],
body[data-runtime-shell-ready="true"] [data-runtime-history-group-key] [aria-label*="删除对话"],
body[data-runtime-shell-ready="true"] [data-runtime-history-group-key] [aria-label*="删除"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"] > p {
  padding-left: 0 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"] > .relative.group,
body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"] > .group:not([data-runtime-history-header-actions="true"]),
body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"] :is([aria-label*="清空"], [title*="清空"], [aria-label*="删除"], [title*="删除"]):not([data-runtime-history-header-collapse-button="true"]):not([data-runtime-history-header-delete-button="true"]) {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body[data-runtime-shell-ready="true"] .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer .absolute.z-10.right-2.flex.items-center.h-full,
body[data-runtime-shell-ready="true"] .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer .menu.relative,
body[data-runtime-shell-ready="true"] .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer [data-runtime-group-project-action="true"],
body[data-runtime-shell-ready="true"] .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer [aria-haspopup="true"][aria-label*="操作"],
body[data-runtime-shell-ready="true"] .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer [aria-label*="删除对话"],
body[data-runtime-shell-ready="true"] .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer [aria-label*="删除"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* -------------------
 * 53. Neutral Interaction Motion
 * ------------------- */

html body :is(
  button,
  [role="button"],
  .btn,
  .btn-pill,
  .btn-icon,
  [data-runtime-conversation-item="true"],
  [data-runtime-history-top-action-group="true"] button,
  [data-runtime-project-section="true"] button,
  [data-runtime-project-load-more="true"],
  [data-runtime-plugin-tool-entry-button="true"],
  [data-runtime-plugin-tool-entry-item="true"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-knowledge-base-manage-button="true"],
  [data-runtime-private-chat-entry="true"],
  [data-runtime-header-actions="true"] button,
  [data-runtime-header-actions="true"] .btn-icon,
  [data-runtime-composer-tools="true"] button,
  [data-runtime-composer-submit="true"] button
) {
  transform: none !important;
  will-change: auto !important;
  transition-property: background-color, color, box-shadow, opacity !important;
}

html body :is(
  button,
  [role="button"],
  .btn,
  .btn-pill,
  .btn-icon,
  [data-runtime-conversation-item="true"],
  [data-runtime-history-top-action-group="true"] button,
  [data-runtime-project-section="true"] button,
  [data-runtime-project-load-more="true"],
  [data-runtime-plugin-tool-entry-button="true"],
  [data-runtime-plugin-tool-entry-item="true"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-knowledge-base-manage-button="true"],
  [data-runtime-private-chat-entry="true"],
  [data-runtime-header-actions="true"] button,
  [data-runtime-header-actions="true"] .btn-icon,
  [data-runtime-composer-tools="true"] button,
  [data-runtime-composer-submit="true"] button
):is(:hover, :active, :focus, :focus-visible) {
  transform: none !important;
}

/* -------------------
 * 54. Final Shell Surface Lock
 * ------------------- */

body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"],
body[data-runtime-shell-ready="true"] .relative.z-30.flex-shrink-0.bg-white.dark\:bg-gray-800.backdrop-blur-sm,
body[data-runtime-shell-ready="true"] .relative.z-30.flex-shrink-0.bg-white\/50.dark\:bg-gray-900\/50.backdrop-blur-sm {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  box-shadow: var(--runtime-shadow-unified) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"],
html.dark body[data-runtime-shell-ready="true"] .relative.z-30.flex-shrink-0.bg-white.dark\:bg-gray-800.backdrop-blur-sm,
html.dark body[data-runtime-shell-ready="true"] .relative.z-30.flex-shrink-0.bg-white\/50.dark\:bg-gray-900\/50.backdrop-blur-sm {
  background: #111111 !important;
  background-color: #111111 !important;
  background-image: none !important;
  box-shadow: var(--runtime-shadow-unified) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-plugin-tool-entry-button="true"]:is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"]) {
  background-color: #dddddd !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-plugin-tool-entry-button="true"]:is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"]) {
  background-color: #313131 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"] {
  background: #f3f3f3 !important;
  background-color: #f3f3f3 !important;
  background-image: none !important;
  box-shadow: var(--runtime-shadow-unified) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"] {
  background: #1d1d1d !important;
  background-color: #1d1d1d !important;
  background-image: none !important;
  box-shadow: var(--runtime-shadow-unified) !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-header-actions="true"] button[data-runtime-header-action],
  [data-runtime-header-actions="true"] .btn-icon,
  [data-runtime-private-chat-entry="true"]
) {
  background: #f3f3f3 !important;
  background-color: #f3f3f3 !important;
  background-image: none !important;
  box-shadow: var(--runtime-shadow-unified) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-header-actions="true"] button[data-runtime-header-action],
  [data-runtime-header-actions="true"] .btn-icon,
  [data-runtime-private-chat-entry="true"]
) {
  background: #1d1d1d !important;
  background-color: #1d1d1d !important;
  background-image: none !important;
  box-shadow: var(--runtime-shadow-unified) !important;
}

html body [data-runtime-history-synthetic-wrapper="true"][data-runtime-history-active="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
html.dark body [data-runtime-history-synthetic-wrapper="true"][data-runtime-history-active="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-plugin-tool-entry-menu="true"],
  .menu-items
) {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  box-shadow: var(--runtime-shadow-unified) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-plugin-tool-entry-menu="true"],
  .menu-items
) {
  background: #111111 !important;
  background-color: #111111 !important;
  background-image: none !important;
  box-shadow: var(--runtime-shadow-unified) !important;
}

html.dark body[data-runtime-shell-ready="true"] {
  background: #101010 !important;
  background-color: #101010 !important;
  background-image: none !important;
}

html.dark,
html.dark body,
html.dark #app {
  background: #101010 !important;
  background-color: #101010 !important;
  background-image: none !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .user-message .message-content,
  .user-message .rounded-2xl:not(.message-content .rounded-2xl),
  #image-wrapper .flex.w-full.my-2.pb-3.items-start.flex-row .rounded-2xl.text-base.break-words.whitespace-pre-wrap
) {
  background: #1d1d1d !important;
  background-color: #1d1d1d !important;
  background-image: none !important;
  color: #f3f3f3 !important;
}

@media (max-width: 768px) {
  body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[aria-label="新对话"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* -------------------
 * 55. History Sidebar Plain Text Lock
 * ------------------- */

body[data-runtime-shell-ready="true"] [data-runtime-history-section-container="true"] {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  gap: 0 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"] {
  min-height: 24px !important;
  margin: 4px 0 0 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-note="true"] {
  margin: 2px 0 3px 18px !important;
  line-height: 1.3 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"] > p {
  margin: 0 !important;
  line-height: 1.25 !important;
  color: var(--runtime-sidebar-heading-color, #111111) !important;
  opacity: 1 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-section-container="true"] > :not([data-runtime-history-date-heading="true"]):not([data-runtime-project-section="true"]):not([data-runtime-project-note="true"]):not([data-runtime-project-load-more="true"]) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  filter: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  filter: none !important;
  transform: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) :is(
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  .relative.flex.items-center.gap-3
) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  filter: none !important;
  transform: none !important;
  margin: 0 !important;
  padding: 4px 0 !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) :is(
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  .relative.flex.items-center.gap-3
):is(:hover, :active, :focus, :focus-within, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  filter: none !important;
  transform: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-section-container="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-section-container="true"] > :not([data-runtime-history-date-heading="true"]):not([data-runtime-project-section="true"]):not([data-runtime-project-note="true"]):not([data-runtime-project-load-more="true"]),
html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
),
html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) :is(
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  .relative.flex.items-center.gap-3
),
html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) :is(
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  .relative.flex.items-center.gap-3
):is(:hover, :active, :focus, :focus-within, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  filter: none !important;
  transform: none !important;
}

/* -------------------
 * 56. Sidebar Contrast Final Override
 * ------------------- */

body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] button,
body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"] > p,
body[data-runtime-shell-ready="true"] [data-runtime-history-header-collapse-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"] [data-runtime-project-section-title="true"],
body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"] [data-runtime-project-section-toggle-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-history-date-heading="true"] {
  color: var(--runtime-sidebar-heading-color, #111111) !important;
  opacity: 1 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] button {
  color: var(--runtime-sidebar-action-color, #111111) !important;
  font-weight: 500 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"] > p,
body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"] [data-runtime-project-section-title="true"] {
  font-weight: 700 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-date-heading="true"] {
  font-weight: 600 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] button :is(svg, span),
body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"] :is(svg, span),
body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"] :is(svg, span) {
  color: inherit !important;
  stroke: currentColor !important;
  opacity: 1 !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) :is(
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  .relative.flex.items-center.gap-3
) {
  color: var(--runtime-sidebar-conversation-color, rgba(17, 17, 17, 0.46)) !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) :is(
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  .relative.flex.items-center.gap-3
) :is(span, p, .truncate, .max-w-48, .flex-1) {
  color: inherit !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] button,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"] > p,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-header-collapse-button="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"] [data-runtime-project-section-title="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"] [data-runtime-project-section-toggle-button="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-date-heading="true"] {
  color: var(--runtime-sidebar-heading-color, #f3f3f3) !important;
  opacity: 1 !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] button {
  color: var(--runtime-sidebar-action-color, #f3f3f3) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) :is(
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  .relative.flex.items-center.gap-3
) {
  color: var(--runtime-sidebar-conversation-color, rgba(243, 243, 243, 0.5)) !important;
}

/* -------------------
 * 57. Sidebar Content Text Alignment
 * ------------------- */

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-header-row="true"],
  [data-runtime-project-section="true"],
  [data-runtime-history-date-heading="true"],
  [data-runtime-history-group-key]:not([data-runtime-conversation-row="true"]):not(.relative.flex.items-center.gap-3.rounded-lg.cursor-pointer),
  [data-runtime-history-synthetic-wrapper="true"]:not([data-runtime-conversation-row="true"]):not(.relative.flex.items-center.gap-3.rounded-lg.cursor-pointer),
  [data-runtime-project-note="true"],
  [data-runtime-project-load-more="true"]
) {
  box-sizing: border-box !important;
  margin-left: var(--runtime-sidebar-content-indent, 38px) !important;
  width: calc(100% - var(--runtime-sidebar-content-indent, 38px)) !important;
  max-width: calc(100% - var(--runtime-sidebar-content-indent, 38px)) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"] {
  margin-top: 4px !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"],
body[data-runtime-shell-ready="true"] [data-runtime-history-date-heading="true"] {
  margin-top: 3px !important;
  margin-right: 0 !important;
  margin-bottom: 1px !important;
}

html body[data-runtime-shell-ready="true"] p[data-runtime-history-date-heading="true"],
html body[data-runtime-shell-ready="true"] div.custom-scrollbar [data-runtime-history-date-heading="true"],
html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-date-heading="true"] {
  box-sizing: border-box !important;
  margin: 3px 0 1px var(--runtime-sidebar-content-indent, 38px) !important;
  width: calc(100% - var(--runtime-sidebar-content-indent, 38px)) !important;
  max-width: calc(100% - var(--runtime-sidebar-content-indent, 38px)) !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-note="true"] {
  margin-top: 2px !important;
  margin-right: 0 !important;
  margin-bottom: 3px !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-load-more="true"] {
  margin-top: 4px !important;
  margin-right: 0 !important;
  margin-bottom: 10px !important;
}

/* -------------------
 * 58. Sidebar Expand Layout Stability
 * ------------------- */

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm,
body[data-runtime-shell-ready="true"] {
  gap: 0 !important;
  row-gap: 0 !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-section-container="true"],
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"],
  [data-runtime-history-date-heading="true"],
  [data-runtime-project-section="true"],
  [data-runtime-history-header-row="true"]
) {
  transition-property: color, opacity, background-color !important;
  transition-duration: 0.16s !important;
  transition-timing-function: ease !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
),
body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
):is(:hover, :active, :focus, :focus-within, :focus-visible) {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  transform: none !important;
  transition-property: color, opacity, background-color !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"],
  [data-runtime-history-section-container="true"] > div
) :is(
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  .relative.flex.items-center.gap-3
) {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 4px !important;
  padding-right: 0 !important;
  padding-bottom: 4px !important;
  padding-left: 0 !important;
  border: 0 !important;
  transform: none !important;
  transition-property: color, opacity, background-color !important;
  transition-duration: 0.16s !important;
  transition-timing-function: ease !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"],
  [data-runtime-history-section-container="true"] > div
) :is(
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  .relative.flex.items-center.gap-3
):is(:hover, :active, :focus, :focus-within, :focus-visible) {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 4px !important;
  padding-right: 0 !important;
  padding-bottom: 4px !important;
  padding-left: 0 !important;
  border: 0 !important;
  transform: none !important;
  transition-property: color, opacity, background-color !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-header-collapse-button="true"],
  [data-runtime-project-section-toggle-button="true"],
  [data-runtime-project-section-title="true"]
) {
  transform: none !important;
  transition-property: color, opacity, background-color !important;
  transition-duration: 0.16s !important;
  transition-timing-function: ease !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-header-collapse-button="true"],
  [data-runtime-project-section-toggle-button="true"],
  [data-runtime-project-section-title="true"]
):is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"], [aria-expanded="false"], [aria-pressed="true"], [aria-pressed="false"]) {
  transform: none !important;
  box-shadow: none !important;
  transition-property: color, opacity, background-color !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-header-collapse-button="true"],
body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-project-section-toggle-button="true"] {
  width: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  height: 28px !important;
  min-height: 28px !important;
  max-height: 28px !important;
  padding: 0 !important;
  flex: 0 0 28px !important;
}

/* -------------------
 * 59. Sidebar Muted Headings And Strong Rows
 * ------------------- */

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) {
  --runtime-sidebar-muted-section-color: rgba(17, 17, 17, 0.52) !important;
  --runtime-sidebar-project-title-color: var(--runtime-sidebar-muted-section-color, rgba(17, 17, 17, 0.52)) !important;
  --runtime-sidebar-project-toggle-color: rgba(17, 17, 17, 0.5) !important;
  --runtime-sidebar-strong-row-color: #050505 !important;
}

html.dark body[data-runtime-shell-ready="true"] {
  --runtime-sidebar-muted-section-color: rgba(243, 243, 243, 0.58) !important;
  --runtime-sidebar-project-title-color: var(--runtime-sidebar-muted-section-color, rgba(243, 243, 243, 0.58)) !important;
  --runtime-sidebar-project-toggle-color: rgba(198, 209, 222, 0.58) !important;
  --runtime-sidebar-strong-row-color: #ffffff !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) :is(
  [data-runtime-history-header-row="true"] > p,
  [data-runtime-history-header-collapse-button="true"],
  [data-runtime-project-section="true"] [data-runtime-project-section-title="true"],
  [data-runtime-project-section="true"] [data-runtime-project-section-toggle-button="true"],
  [data-runtime-history-date-heading="true"]
) {
  color: var(--runtime-sidebar-muted-section-color, rgba(17, 17, 17, 0.52)) !important;
  opacity: 1 !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) :is(
  [data-runtime-history-header-row="true"],
  [data-runtime-project-section="true"],
  [data-runtime-history-date-heading="true"]
) :is(svg, span[aria-hidden="true"]) {
  color: inherit !important;
  stroke: currentColor !important;
  opacity: 1 !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  transform: none !important;
  transition-property: color, opacity, background-color !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) > div:has(> .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer),
body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) [data-runtime-history-section-container="true"] > div:has(> .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer) {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  transform: none !important;
  transition-property: color, opacity, background-color !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer:is(:hover, :active, :focus, :focus-within, :focus-visible) {
  box-sizing: border-box !important;
  min-height: 28px !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 4px !important;
  padding-right: 0 !important;
  padding-bottom: 4px !important;
  padding-left: 0 !important;
  border: 0 !important;
  transform: none !important;
  color: var(--runtime-sidebar-strong-row-color, #111111) !important;
  transition-property: color, opacity, background-color !important;
  transition-duration: 0.16s !important;
  transition-timing-function: ease !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer :is(span, p, .truncate, .max-w-48, .flex-1) {
  color: inherit !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) [data-runtime-project-section="true"] {
  min-height: 28px !important;
  margin-top: 3px !important;
  margin-right: 0 !important;
  margin-bottom: 1px !important;
  padding: 0 !important;
  transform: none !important;
  transition-property: color, opacity, background-color !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) [data-runtime-project-section="true"] > div:first-child,
body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) [data-runtime-project-section="true"] [data-runtime-project-section-title="true"] {
  min-height: 28px !important;
  align-items: center !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) :is(
  [data-runtime-history-header-collapse-button="true"],
  [data-runtime-project-section-toggle-button="true"]
) {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  height: 28px !important;
  min-height: 28px !important;
  max-height: 28px !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  transform: none !important;
  box-shadow: none !important;
  line-height: 1 !important;
  transition-property: color, opacity, background-color !important;
  transition-duration: 0.16s !important;
  transition-timing-function: ease !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) :is(
  [data-runtime-history-header-collapse-button="true"],
  [data-runtime-project-section-toggle-button="true"]
):is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"], [aria-expanded="false"], [aria-pressed="true"], [aria-pressed="false"]) {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  transform: none !important;
  box-shadow: none !important;
  transition-property: color, opacity, background-color !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) :is(
  [data-runtime-history-header-collapse-button="true"],
  [data-runtime-project-section-toggle-button="true"]
),
body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) :is(
  [data-runtime-history-header-collapse-button="true"],
  [data-runtime-project-section-toggle-button="true"]
):is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"], [aria-expanded="false"], [aria-pressed="true"], [aria-pressed="false"], [data-runtime-top-action-state="idle"], [data-runtime-top-action-state="hover"], [data-runtime-top-action-state="active"]) {
  color: var(--runtime-sidebar-muted-section-color, rgba(17, 17, 17, 0.52)) !important;
  background: transparent !important;
  background-color: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) :is(
  [data-runtime-history-header-collapse-button="true"],
  [data-runtime-project-section-toggle-button="true"]
) :is(svg, span, img) {
  color: inherit !important;
  stroke: currentColor !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) {
  box-sizing: border-box !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  margin-left: var(--runtime-sidebar-content-indent, 6.25px) !important;
  width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  max-width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  padding: 0 !important;
  transform: none !important;
  transition-property: color, opacity, background-color !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) > :is(
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  .relative.flex.items-center.gap-3
) {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) {
  box-sizing: border-box !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  margin-left: var(--runtime-sidebar-content-indent, 6.25px) !important;
  width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  max-width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  padding: 0 !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) > :is(
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  .relative.flex.items-center.gap-3
) {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: none !important;
}

/* -------------------
 * 60. Sidebar Block Separation
 * ------------------- */

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-top-action-group="true"] {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 12px !important;
  margin-left: 0 !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-section-container="true"][data-runtime-history-section-kind="favorite"] {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 10px !important;
  margin-left: 0 !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-section-container="true"][data-runtime-history-section-kind="category"] {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 12px !important;
  margin-left: 0 !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-section-container="true"][data-runtime-history-section-kind="history"] {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 10px !important;
  margin-left: 0 !important;
}

/* -------------------
 * 61. Sidebar Header Divider
 * ------------------- */

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) {
  --runtime-sidebar-header-divider-color: rgba(17, 17, 17, 0.14) !important;
}

html.dark body[data-runtime-shell-ready="true"] {
  --runtime-sidebar-header-divider-color: rgba(255, 255, 255, 0.16) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) [data-runtime-history-header-row="true"] {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) [data-runtime-history-header-row="true"] > p {
  order: 1 !important;
  flex: 0 0 auto !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) [data-runtime-history-header-row="true"]::before {
  content: "" !important;
  display: block !important;
  order: 2 !important;
  flex: 1 1 auto !important;
  min-width: 16px !important;
  height: 1px !important;
  margin: 0 4px !important;
  background: var(--runtime-sidebar-header-divider-color, rgba(17, 17, 17, 0.14)) !important;
  pointer-events: none !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) [data-runtime-history-header-row="true"] > :not(p) {
  order: 3 !important;
  flex: 0 0 auto !important;
}

/* -------------------
 * 62. Sidebar Conversation Row States
 * ------------------- */

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) {
  --runtime-sidebar-conversation-hover-bg: rgba(17, 17, 17, 0.05) !important;
  --runtime-sidebar-conversation-hover-shadow: var(--runtime-shadow-hover-ring) !important;
  --runtime-sidebar-conversation-active-bg: rgba(17, 17, 17, 0.09) !important;
  --runtime-sidebar-conversation-active-hover-bg: rgba(17, 17, 17, 0.12) !important;
  --runtime-sidebar-conversation-active-shadow: var(--runtime-shadow-active-ring) !important;
}

html.dark body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) {
  --runtime-sidebar-conversation-hover-bg: rgba(255, 255, 255, 0.08) !important;
  --runtime-sidebar-conversation-hover-shadow: var(--runtime-shadow-hover-ring) !important;
  --runtime-sidebar-conversation-active-bg: rgba(255, 255, 255, 0.14) !important;
  --runtime-sidebar-conversation-active-hover-bg: rgba(255, 255, 255, 0.18) !important;
  --runtime-sidebar-conversation-active-shadow: var(--runtime-shadow-active-ring) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-row="true"] {
  box-sizing: border-box !important;
  width: calc(100% + 8px) !important;
  max-width: calc(100% + 8px) !important;
  min-height: 28px !important;
  margin-left: -8px !important;
  padding: 4px 8px !important;
  border-radius: 10px !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-conversation-color, #050505) !important;
  transform: none !important;
  transition-property: background-color, color, box-shadow, opacity !important;
  transition-duration: 0.16s !important;
  transition-timing-function: ease !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-row="true"]:is(:hover, :focus, :focus-visible, :focus-within) {
  background: var(--runtime-sidebar-conversation-hover-bg, rgba(17, 17, 17, 0.05)) !important;
  background-color: var(--runtime-sidebar-conversation-hover-bg, rgba(17, 17, 17, 0.05)) !important;
  box-shadow: var(--runtime-sidebar-conversation-hover-shadow, var(--runtime-shadow-hover-ring)) !important;
  color: var(--runtime-sidebar-conversation-hover-color, #050505) !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-row="true"][data-runtime-history-active="true"] {
  background: var(--runtime-sidebar-conversation-active-bg, rgba(17, 17, 17, 0.09)) !important;
  background-color: var(--runtime-sidebar-conversation-active-bg, rgba(17, 17, 17, 0.09)) !important;
  box-shadow: var(--runtime-sidebar-conversation-active-shadow, var(--runtime-shadow-active-ring)) !important;
  color: var(--runtime-sidebar-conversation-active-color, #050505) !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-row="true"][data-runtime-history-active="true"]:is(:hover, :focus, :focus-visible, :focus-within) {
  background: var(--runtime-sidebar-conversation-active-hover-bg, rgba(17, 17, 17, 0.12)) !important;
  background-color: var(--runtime-sidebar-conversation-active-hover-bg, rgba(17, 17, 17, 0.12)) !important;
  box-shadow: var(--runtime-sidebar-conversation-active-shadow, var(--runtime-shadow-active-ring)) !important;
  color: var(--runtime-sidebar-conversation-active-color, #050505) !important;
  transform: none !important;
}

/* -------------------
 * 63. Sidebar Conversation Item Gap
 * ------------------- */

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) {
  margin-bottom: 3px !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
):is(:hover, :active, :focus, :focus-within, :focus-visible) {
  margin-bottom: 3px !important;
}

/* -------------------
 * 64. Sidebar Unified Runtime Polish
 * ------------------- */

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) {
  --runtime-sidebar-action-gap: 6px !important;
  --runtime-sidebar-action-block-gap: 12px !important;
  --runtime-sidebar-section-gap-favorite: 10px !important;
  --runtime-sidebar-section-gap-category: 12px !important;
  --runtime-sidebar-section-gap-history: 10px !important;
  --runtime-sidebar-content-indent: 6.25px !important;
  --runtime-sidebar-row-gap: 3px !important;
  --runtime-sidebar-row-radius: 10px !important;
  --runtime-sidebar-row-min-height: 28px !important;
  --runtime-sidebar-row-padding-x: 8px !important;
  --runtime-sidebar-row-padding-y: 4px !important;
  --runtime-sidebar-heading-height: 24px !important;
  --runtime-sidebar-section-toggle-size: 28px !important;
  --runtime-sidebar-inline-toggle-size: 18px !important;
  --runtime-sidebar-muted-section-color: rgba(17, 17, 17, 0.52) !important;
  --runtime-sidebar-project-title-color: var(--runtime-sidebar-muted-section-color, rgba(17, 17, 17, 0.52)) !important;
  --runtime-sidebar-project-toggle-color: rgba(17, 17, 17, 0.5) !important;
  --runtime-sidebar-date-color: rgba(17, 17, 17, 0.42) !important;
  --runtime-sidebar-strong-row-color: #050505 !important;
  --runtime-sidebar-action-color: rgba(17, 17, 17, 0.9) !important;
  --runtime-sidebar-top-action-hover-bg: rgba(17, 17, 17, 0.06) !important;
  --runtime-sidebar-top-action-hover-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.04) !important;
  --runtime-sidebar-top-action-current-bg: rgba(17, 17, 17, 0.08) !important;
  --runtime-sidebar-top-action-current-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06) !important;
  --runtime-sidebar-top-action-active-bg: rgba(17, 17, 17, 0.1) !important;
  --runtime-sidebar-top-action-active-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08) !important;
  --runtime-sidebar-header-divider-color: rgba(17, 17, 17, 0.14) !important;
  --runtime-sidebar-section-button-opacity: 0.58 !important;
  --runtime-sidebar-section-button-hover-opacity: 0.88 !important;
  --runtime-sidebar-section-button-active-opacity: 0.96 !important;
  --runtime-sidebar-conversation-color: #050505 !important;
  --runtime-sidebar-conversation-hover-color: #050505 !important;
  --runtime-sidebar-conversation-active-color: #050505 !important;
  --runtime-sidebar-conversation-hover-bg: rgba(17, 17, 17, 0.05) !important;
  --runtime-sidebar-conversation-hover-shadow: var(--runtime-shadow-hover-ring) !important;
  --runtime-sidebar-conversation-active-bg: rgba(17, 17, 17, 0.09) !important;
  --runtime-sidebar-conversation-active-hover-bg: rgba(17, 17, 17, 0.12) !important;
  --runtime-sidebar-conversation-active-shadow: var(--runtime-shadow-active-ring) !important;
  gap: 0 !important;
  row-gap: 0 !important;
}

html.dark body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) {
  --runtime-sidebar-muted-section-color: rgba(243, 243, 243, 0.58) !important;
  --runtime-sidebar-project-title-color: var(--runtime-sidebar-muted-section-color, rgba(243, 243, 243, 0.58)) !important;
  --runtime-sidebar-project-toggle-color: rgba(198, 209, 222, 0.58) !important;
  --runtime-sidebar-date-color: rgba(243, 243, 243, 0.46) !important;
  --runtime-sidebar-strong-row-color: #ffffff !important;
  --runtime-sidebar-action-color: rgba(243, 243, 243, 0.88) !important;
  --runtime-sidebar-top-action-hover-bg: rgba(255, 255, 255, 0.1) !important;
  --runtime-sidebar-top-action-hover-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06) !important;
  --runtime-sidebar-top-action-current-bg: rgba(255, 255, 255, 0.13) !important;
  --runtime-sidebar-top-action-current-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
  --runtime-sidebar-top-action-active-bg: rgba(255, 255, 255, 0.16) !important;
  --runtime-sidebar-top-action-active-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
  --runtime-sidebar-header-divider-color: rgba(255, 255, 255, 0.16) !important;
  --runtime-sidebar-conversation-color: #ffffff !important;
  --runtime-sidebar-conversation-hover-color: #ffffff !important;
  --runtime-sidebar-conversation-active-color: #ffffff !important;
  --runtime-sidebar-conversation-hover-bg: rgba(255, 255, 255, 0.08) !important;
  --runtime-sidebar-conversation-hover-shadow: var(--runtime-shadow-hover-ring) !important;
  --runtime-sidebar-conversation-active-bg: rgba(255, 255, 255, 0.14) !important;
  --runtime-sidebar-conversation-active-hover-bg: rgba(255, 255, 255, 0.18) !important;
  --runtime-sidebar-conversation-active-shadow: var(--runtime-shadow-active-ring) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"]) [data-runtime-project-section-title="true"] {
  color: var(--runtime-sidebar-project-title-color, var(--runtime-sidebar-muted-section-color, rgba(17, 17, 17, 0.52))) !important;
  font-weight: 680 !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"]) [data-runtime-project-section-toggle-button="true"] {
  color: var(--runtime-sidebar-project-toggle-color, rgba(17, 17, 17, 0.5)) !important;
}

html.dark body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"]) [data-runtime-project-section-title="true"] {
  color: var(--runtime-sidebar-project-title-color, var(--runtime-sidebar-muted-section-color, rgba(243, 243, 243, 0.58))) !important;
}

html.dark body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) [data-runtime-project-section="true"]:not([data-runtime-project-section-key="__favorites__"]):not([data-runtime-project-section-key="__uncategorized__"]) [data-runtime-project-section-toggle-button="true"] {
  color: var(--runtime-sidebar-project-toggle-color, rgba(198, 209, 222, 0.58)) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-top-action-group="true"] {
  display: flex !important;
  flex-direction: column !important;
  gap: var(--runtime-sidebar-action-gap, 6px) !important;
  row-gap: var(--runtime-sidebar-action-gap, 6px) !important;
  margin: 0 0 var(--runtime-sidebar-action-block-gap, 12px) !important;
  padding: 0 0 8px !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 16 !important;
  background: linear-gradient(
    180deg,
    var(--sidebar-bg, #f1f1f1) 0%,
    var(--sidebar-bg, #f1f1f1) calc(100% - 10px),
    rgba(241, 241, 241, 0) 100%
  ) !important;
  background-color: var(--sidebar-bg, #f1f1f1) !important;
  isolation: isolate !important;
  transform: translateZ(0) !important;
  will-change: transform !important;
}

html.dark body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-top-action-group="true"] {
  background: linear-gradient(
    180deg,
    var(--sidebar-bg, #171717) 0%,
    var(--sidebar-bg, #171717) calc(100% - 10px),
    rgba(23, 23, 23, 0) 100%
  ) !important;
  background-color: var(--sidebar-bg, #171717) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-scroll-top-button="true"] {
  position: fixed !important;
  z-index: 48 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  padding: 0 !important;
  border: 1px solid rgba(17, 17, 17, 0.08) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: rgba(17, 17, 17, 0.68) !important;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.62) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate3d(0, 6px, 0) scale(0.96) !important;
  transition: background-color 0.14s ease, color 0.14s ease, border-color 0.14s ease !important;
  backdrop-filter: blur(14px) saturate(1.2) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.2) !important;
  cursor: pointer !important;
  outline: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-scroll-top-button="true"][data-visible="true"] {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-scroll-top-button="true"]:is(:hover, :focus-visible) {
  border-color: rgba(17, 17, 17, 0.13) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  color: rgba(17, 17, 17, 0.86) !important;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-scroll-top-button="true"]:active {
  transform: translate3d(0, 1px, 0) scale(0.98) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-scroll-top-button="true"] {
  border-color: rgba(255, 255, 255, 0.09) !important;
  background: rgba(32, 32, 32, 0.72) !important;
  color: rgba(243, 243, 243, 0.72) !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-scroll-top-button="true"]:is(:hover, :focus-visible) {
  border-color: rgba(255, 255, 255, 0.14) !important;
  background: rgba(44, 44, 44, 0.9) !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-top-action-slot] {
  display: block !important;
  width: 100% !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
) {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  width: 100% !important;
  min-height: 34px !important;
  margin: 0 !important;
  padding: 2px 10px 2px 0 !important;
  border: 0 !important;
  border-radius: 11px !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-action-color, rgba(17, 17, 17, 0.9)) !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  text-align: left !important;
  transform: none !important;
  transition: background-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease !important;
  will-change: auto !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
)[data-runtime-top-action-pointer-over="true"] {
  background: var(--runtime-sidebar-top-action-hover-bg, rgba(17, 17, 17, 0.06)) !important;
  background-color: var(--runtime-sidebar-top-action-hover-bg, rgba(17, 17, 17, 0.06)) !important;
  box-shadow: var(--runtime-sidebar-top-action-hover-shadow, inset 0 0 0 1px rgba(17, 17, 17, 0.04)) !important;
  color: var(--runtime-sidebar-conversation-hover-color, #050505) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
):is(:active, [data-runtime-top-action-state="active"]) {
  background: var(--runtime-sidebar-top-action-active-bg, rgba(17, 17, 17, 0.1)) !important;
  background-color: var(--runtime-sidebar-top-action-active-bg, rgba(17, 17, 17, 0.1)) !important;
  box-shadow: var(--runtime-sidebar-top-action-active-shadow, inset 0 0 0 1px rgba(17, 17, 17, 0.08)) !important;
  color: var(--runtime-sidebar-conversation-active-color, #050505) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
):not([data-runtime-top-action-pointer-over="true"]):not(:active):not([data-runtime-top-action-state="active"]) {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-action-color, rgba(17, 17, 17, 0.9)) !important;
}

html.dark body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
):not([data-runtime-top-action-pointer-over="true"]):not(:active):not([data-runtime-top-action-state="active"]) {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-action-color, rgba(243, 243, 243, 0.88)) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
) > span[aria-hidden="true"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--runtime-sidebar-top-action-icon-size, 30px) !important;
  height: var(--runtime-sidebar-top-action-icon-size, 30px) !important;
  min-width: var(--runtime-sidebar-top-action-icon-size, 30px) !important;
  flex: 0 0 var(--runtime-sidebar-top-action-icon-size, 30px) !important;
  color: currentColor !important;
  line-height: 0 !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-top-action-group="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
) > span[aria-hidden="true"] :is(svg, .i-icon) {
  width: var(--runtime-sidebar-top-action-icon-size, 30px) !important;
  height: var(--runtime-sidebar-top-action-icon-size, 30px) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-section-container="true"] {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  gap: 0 !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-section-container="true"][data-runtime-history-section-kind="favorite"] {
  margin: 0 0 var(--runtime-sidebar-section-gap-favorite, 10px) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-section-container="true"][data-runtime-history-section-kind="category"] {
  margin: 0 0 var(--runtime-sidebar-section-gap-category, 12px) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-section-container="true"][data-runtime-history-section-kind="history"] {
  margin: 0 0 var(--runtime-sidebar-section-gap-history, 10px) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-header-row="true"] {
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  max-width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  min-height: var(--runtime-sidebar-heading-height, 24px) !important;
  margin: 4px 0 0 var(--runtime-sidebar-content-indent, 6.25px) !important;
  padding: 0 !important;
  color: var(--runtime-sidebar-muted-section-color, rgba(17, 17, 17, 0.52)) !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-header-row="true"] > p {
  order: 1 !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  color: inherit !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-header-row="true"]::before {
  content: "" !important;
  display: block !important;
  order: 2 !important;
  flex: 1 1 auto !important;
  min-width: 16px !important;
  height: 1px !important;
  margin: 0 4px !important;
  background: var(--runtime-sidebar-header-divider-color, rgba(17, 17, 17, 0.14)) !important;
  pointer-events: none !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-header-actions="true"] {
  order: 3 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 4px !important;
  flex: 0 0 auto !important;
  margin-left: auto !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-header-collapse-button="true"],
  [data-runtime-history-header-delete-button="true"],
  [data-runtime-project-section-toggle-button="true"]
) {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--runtime-sidebar-section-toggle-size, 28px) !important;
  min-width: var(--runtime-sidebar-section-toggle-size, 28px) !important;
  max-width: var(--runtime-sidebar-section-toggle-size, 28px) !important;
  height: var(--runtime-sidebar-section-toggle-size, 28px) !important;
  min-height: var(--runtime-sidebar-section-toggle-size, 28px) !important;
  max-height: var(--runtime-sidebar-section-toggle-size, 28px) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-muted-section-color, rgba(17, 17, 17, 0.52)) !important;
  cursor: pointer !important;
  flex: 0 0 var(--runtime-sidebar-section-toggle-size, 28px) !important;
  line-height: 1 !important;
  opacity: var(--runtime-sidebar-section-button-opacity, 0.58) !important;
  transform: none !important;
  transition: color 0.16s ease, opacity 0.16s ease, background-color 0.16s ease !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-header-delete-button="true"] {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-header-row="true"]:hover [data-runtime-history-header-collapse-button="true"],
  [data-runtime-history-header-row="true"]:focus-within [data-runtime-history-header-collapse-button="true"],
  [data-runtime-project-section="true"]:hover [data-runtime-project-section-toggle-button="true"],
  [data-runtime-project-section="true"]:focus-within [data-runtime-project-section-toggle-button="true"],
  [data-runtime-history-header-collapse-button="true"]:hover,
  [data-runtime-history-header-delete-button="true"]:hover,
  [data-runtime-project-section-toggle-button="true"]:hover,
  [data-runtime-history-header-collapse-button="true"][data-runtime-top-action-state="hover"],
  [data-runtime-history-header-delete-button="true"][data-runtime-top-action-state="hover"],
  [data-runtime-project-section-toggle-button="true"][data-runtime-top-action-state="hover"]
) {
  opacity: var(--runtime-sidebar-section-button-hover-opacity, 0.88) !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-header-collapse-button="true"]:active,
  [data-runtime-history-header-delete-button="true"]:active,
  [data-runtime-project-section-toggle-button="true"]:active,
  [data-runtime-history-header-collapse-button="true"][data-runtime-top-action-state="active"],
  [data-runtime-history-header-delete-button="true"][data-runtime-top-action-state="active"],
  [data-runtime-project-section-toggle-button="true"][data-runtime-top-action-state="active"]
) {
  opacity: var(--runtime-sidebar-section-button-active-opacity, 0.96) !important;
  pointer-events: auto !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-header-row="true"][data-runtime-history-empty-section="true"] [data-runtime-history-header-actions="true"] {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-header-delete-button="true"],
body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) [data-runtime-history-header-delete-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"] [data-runtime-history-header-delete-button="true"] {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  min-width: 22px !important;
  max-width: 22px !important;
  height: 22px !important;
  min-height: 22px !important;
  max-height: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-muted-section-color, rgba(17, 17, 17, 0.52)) !important;
  cursor: pointer !important;
  flex: 0 0 22px !important;
  line-height: 1 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: none !important;
  transition: color 0.16s ease, opacity 0.16s ease !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-header-delete-button="true"] :is(svg, span),
body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"] [data-runtime-history-header-delete-button="true"] :is(svg, span) {
  width: 18px !important;
  height: 18px !important;
  color: inherit !important;
  stroke: currentColor !important;
  opacity: 1 !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-header-actions="true"]:hover [data-runtime-history-header-delete-button="true"],
body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-header-actions="true"][data-runtime-history-header-actions-delete-visible="true"] [data-runtime-history-header-delete-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-history-header-actions="true"]:hover [data-runtime-history-header-delete-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-history-header-actions="true"][data-runtime-history-header-actions-delete-visible="true"] [data-runtime-history-header-delete-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-history-header-delete-button="true"]:is(:hover, :active, :focus-visible),
body[data-runtime-shell-ready="true"] [data-runtime-history-header-delete-button="true"][data-runtime-top-action-state="hover"],
body[data-runtime-shell-ready="true"] [data-runtime-history-header-delete-button="true"][data-runtime-top-action-state="active"] {
  opacity: 0.86 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-header-delete-button="true"]:is(:hover, :focus-visible) {
  color: var(--runtime-sidebar-strong-row-color, #111111) !important;
}

/* Final guard: history cleanup is an icon-only affordance, not a visible button block. */
body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"][data-runtime-history-section-kind="history"] [data-runtime-history-header-delete-button="true"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  min-width: 22px !important;
  max-width: 22px !important;
  height: 22px !important;
  min-height: 22px !important;
  max-height: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  color: var(--runtime-sidebar-muted-section-color, rgba(17, 17, 17, 0.52)) !important;
  flex: 0 0 22px !important;
  line-height: 1 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: none !important;
  transition: color 0.16s ease, opacity 0.16s ease !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"][data-runtime-history-section-kind="history"] [data-runtime-history-header-delete-button="true"] :is(svg, span) {
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
  stroke: currentColor !important;
  opacity: 1 !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"][data-runtime-history-section-kind="history"] [data-runtime-history-header-actions="true"]:hover [data-runtime-history-header-delete-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"][data-runtime-history-section-kind="history"] [data-runtime-history-header-actions="true"][data-runtime-history-header-actions-delete-visible="true"] [data-runtime-history-header-delete-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"][data-runtime-history-section-kind="history"] [data-runtime-history-header-delete-button="true"]:is(:hover, :active, :focus-visible) {
  opacity: 0.86 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-project-section="true"] {
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  max-width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  min-height: var(--runtime-sidebar-row-min-height, 28px) !important;
  margin: 3px 0 1px var(--runtime-sidebar-content-indent, 6.25px) !important;
  padding: 0 !important;
  color: var(--runtime-sidebar-muted-section-color, rgba(17, 17, 17, 0.52)) !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-project-section="true"] > div:first-child {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-project-section-inline-toggle="true"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--runtime-sidebar-inline-toggle-size, 18px) !important;
  height: var(--runtime-sidebar-inline-toggle-size, 18px) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: inherit !important;
  cursor: pointer !important;
  font-size: 11px !important;
  line-height: 1 !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-project-section-title="true"] {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: inherit !important;
  cursor: default !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  opacity: 1 !important;
  text-align: left !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-project-section-title="true"][aria-expanded] {
  cursor: pointer !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-history-date-heading="true"] {
  box-sizing: border-box !important;
  width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  max-width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  margin: 3px 0 1px var(--runtime-sidebar-content-indent, 6.25px) !important;
  color: var(--runtime-sidebar-date-color, rgba(17, 17, 17, 0.42)) !important;
  font-weight: 600 !important;
  opacity: 1 !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) {
  box-sizing: border-box !important;
  display: block !important;
  width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  max-width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  margin: 0 0 var(--runtime-sidebar-row-gap, 3px) var(--runtime-sidebar-content-indent, 6.25px) !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-conversation-row="true"] {
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: calc(100% + var(--runtime-sidebar-row-padding-x, 8px)) !important;
  max-width: calc(100% + var(--runtime-sidebar-row-padding-x, 8px)) !important;
  min-width: 0 !important;
  min-height: var(--runtime-sidebar-row-min-height, 28px) !important;
  margin: 0 0 0 calc(-1 * var(--runtime-sidebar-row-padding-x, 8px)) !important;
  padding: var(--runtime-sidebar-row-padding-y, 4px) var(--runtime-sidebar-row-padding-x, 8px) !important;
  border: 0 !important;
  border-radius: var(--runtime-sidebar-row-radius, 10px) !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-conversation-color, #050505) !important;
  transform: none !important;
  transition: background-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-conversation-row="true"] :is(.flex-1, .truncate, .max-w-48, p, span:not([aria-hidden="true"])) {
  color: inherit !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  min-width: 0 !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-conversation-row="true"][data-runtime-history-active="true"] :is(.flex-1, .truncate, .max-w-48, p, span:not([aria-hidden="true"])) {
  font-weight: 600 !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-conversation-row="true"]:is(:hover, :focus, :focus-visible, :focus-within) {
  background: var(--runtime-sidebar-conversation-hover-bg, rgba(17, 17, 17, 0.05)) !important;
  background-color: var(--runtime-sidebar-conversation-hover-bg, rgba(17, 17, 17, 0.05)) !important;
  box-shadow: var(--runtime-sidebar-conversation-hover-shadow, var(--runtime-shadow-hover-ring)) !important;
  color: var(--runtime-sidebar-conversation-hover-color, #050505) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-conversation-row="true"][data-runtime-history-active="true"] {
  background: var(--runtime-sidebar-conversation-active-bg, rgba(17, 17, 17, 0.09)) !important;
  background-color: var(--runtime-sidebar-conversation-active-bg, rgba(17, 17, 17, 0.09)) !important;
  box-shadow: var(--runtime-sidebar-conversation-active-shadow, var(--runtime-shadow-active-ring)) !important;
  color: var(--runtime-sidebar-conversation-active-color, #050505) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-conversation-row="true"][data-runtime-history-active="true"]:is(:hover, :focus, :focus-visible, :focus-within) {
  background: var(--runtime-sidebar-conversation-active-hover-bg, rgba(17, 17, 17, 0.12)) !important;
  background-color: var(--runtime-sidebar-conversation-active-hover-bg, rgba(17, 17, 17, 0.12)) !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-conversation-row="true"],
  [data-runtime-history-group-key].relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  [data-runtime-history-synthetic-wrapper="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  [data-runtime-history-section-container="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer
) {
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: calc(100% + var(--runtime-sidebar-row-padding-x, 8px)) !important;
  max-width: calc(100% + var(--runtime-sidebar-row-padding-x, 8px)) !important;
  min-width: 0 !important;
  min-height: var(--runtime-sidebar-row-min-height, 28px) !important;
  margin: 0 0 0 calc(-1 * var(--runtime-sidebar-row-padding-x, 8px)) !important;
  padding: var(--runtime-sidebar-row-padding-y, 4px) var(--runtime-sidebar-row-padding-x, 8px) !important;
  border: 0 !important;
  border-radius: var(--runtime-sidebar-row-radius, 10px) !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-conversation-color, #050505) !important;
  transform: none !important;
  transition: background-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-conversation-row="true"],
  [data-runtime-history-group-key].relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  [data-runtime-history-synthetic-wrapper="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  [data-runtime-history-section-container="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer
) :is(.flex-1, .truncate, .max-w-48, p, span:not([aria-hidden="true"])) {
  color: inherit !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  min-width: 0 !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-conversation-row="true"],
  [data-runtime-history-group-key].relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  [data-runtime-history-synthetic-wrapper="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  [data-runtime-history-section-container="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer
):is(:hover, :focus, :focus-visible, :focus-within) {
  background: var(--runtime-sidebar-conversation-hover-bg, rgba(17, 17, 17, 0.05)) !important;
  background-color: var(--runtime-sidebar-conversation-hover-bg, rgba(17, 17, 17, 0.05)) !important;
  box-shadow: var(--runtime-sidebar-conversation-hover-shadow, var(--runtime-shadow-hover-ring)) !important;
  color: var(--runtime-sidebar-conversation-hover-color, #050505) !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-conversation-row="true"][data-runtime-history-active="true"],
  [data-runtime-history-group-key][data-runtime-history-active="true"].relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  [data-runtime-history-synthetic-wrapper="true"][data-runtime-history-active="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer
) {
  background: var(--runtime-sidebar-conversation-active-bg, rgba(17, 17, 17, 0.09)) !important;
  background-color: var(--runtime-sidebar-conversation-active-bg, rgba(17, 17, 17, 0.09)) !important;
  box-shadow: var(--runtime-sidebar-conversation-active-shadow, var(--runtime-shadow-active-ring)) !important;
  color: var(--runtime-sidebar-conversation-active-color, #050505) !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-conversation-row="true"][data-runtime-history-active="true"],
  [data-runtime-history-group-key][data-runtime-history-active="true"].relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  [data-runtime-history-synthetic-wrapper="true"][data-runtime-history-active="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer
) :is(.flex-1, .truncate, .max-w-48, p, span:not([aria-hidden="true"])) {
  font-weight: 600 !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-conversation-row="true"][data-runtime-history-active="true"],
  [data-runtime-history-group-key][data-runtime-history-active="true"].relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  [data-runtime-history-synthetic-wrapper="true"][data-runtime-history-active="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer
):is(:hover, :focus, :focus-visible, :focus-within) {
  background: var(--runtime-sidebar-conversation-active-hover-bg, rgba(17, 17, 17, 0.12)) !important;
  background-color: var(--runtime-sidebar-conversation-active-hover-bg, rgba(17, 17, 17, 0.12)) !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) {
  margin-bottom: var(--runtime-sidebar-row-gap, 3px) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer {
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: calc(100% + var(--runtime-sidebar-row-padding-x, 8px)) !important;
  max-width: calc(100% + var(--runtime-sidebar-row-padding-x, 8px)) !important;
  min-width: 0 !important;
  min-height: var(--runtime-sidebar-row-min-height, 28px) !important;
  margin: 0 0 0 calc(-1 * var(--runtime-sidebar-row-padding-x, 8px)) !important;
  padding: var(--runtime-sidebar-row-padding-y, 4px) var(--runtime-sidebar-row-padding-x, 8px) !important;
  border: 0 !important;
  border-radius: var(--runtime-sidebar-row-radius, 10px) !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-conversation-color, #050505) !important;
  transform: none !important;
  transition: background-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer:is(:hover, :focus, :focus-visible, :focus-within) {
  background-color: var(--runtime-sidebar-conversation-hover-bg, rgba(17, 17, 17, 0.05)) !important;
  box-shadow: var(--runtime-sidebar-conversation-hover-shadow, var(--runtime-shadow-hover-ring)) !important;
  color: var(--runtime-sidebar-conversation-hover-color, #050505) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer[data-runtime-history-active="true"],
body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) [data-runtime-history-active="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer {
  background-color: var(--runtime-sidebar-conversation-active-bg, rgba(17, 17, 17, 0.09)) !important;
  box-shadow: var(--runtime-sidebar-conversation-active-shadow, var(--runtime-shadow-active-ring)) !important;
  color: var(--runtime-sidebar-conversation-active-color, #050505) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer[data-runtime-history-active="true"]:is(:hover, :focus, :focus-visible, :focus-within),
body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) [data-runtime-history-active="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer:is(:hover, :focus, :focus-visible, :focus-within) {
  background-color: var(--runtime-sidebar-conversation-active-hover-bg, rgba(17, 17, 17, 0.12)) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) [data-runtime-history-section-container="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer {
  margin: 0 0 var(--runtime-sidebar-row-gap, 3px) calc(-1 * var(--runtime-sidebar-row-padding-x, 8px)) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-project-note="true"] {
  width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  max-width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  margin: 2px 0 3px var(--runtime-sidebar-content-indent, 6.25px) !important;
  color: var(--runtime-sidebar-date-color, rgba(17, 17, 17, 0.42)) !important;
  line-height: 1.3 !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm [data-runtime-project-load-more="true"] {
  width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  max-width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  margin: 4px 0 10px var(--runtime-sidebar-content-indent, 6.25px) !important;
}

html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: var(--runtime-sidebar-row-gap, 3px) !important;
  margin-left: var(--runtime-sidebar-content-indent, 6.25px) !important;
  width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  max-width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  padding: 0 !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"],
  [data-runtime-history-section-container="true"] > div
) :is(
  [data-runtime-conversation-row="true"],
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer
) {
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: calc(100% + var(--runtime-sidebar-row-padding-x, 8px)) !important;
  max-width: calc(100% + var(--runtime-sidebar-row-padding-x, 8px)) !important;
  min-width: 0 !important;
  min-height: var(--runtime-sidebar-row-min-height, 28px) !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  margin-left: calc(-1 * var(--runtime-sidebar-row-padding-x, 8px)) !important;
  padding-top: var(--runtime-sidebar-row-padding-y, 4px) !important;
  padding-right: var(--runtime-sidebar-row-padding-x, 8px) !important;
  padding-bottom: var(--runtime-sidebar-row-padding-y, 4px) !important;
  padding-left: var(--runtime-sidebar-row-padding-x, 8px) !important;
  border: 0 !important;
  border-radius: var(--runtime-sidebar-row-radius, 10px) !important;
  transform: none !important;
  transition-property: background-color, color, box-shadow, opacity !important;
}

html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"],
  [data-runtime-history-section-container="true"] > div
) :is(
  [data-runtime-conversation-row="true"],
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer
):is(:hover, :active, :focus, :focus-within, :focus-visible) {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  margin-left: calc(-1 * var(--runtime-sidebar-row-padding-x, 8px)) !important;
  padding-top: var(--runtime-sidebar-row-padding-y, 4px) !important;
  padding-right: var(--runtime-sidebar-row-padding-x, 8px) !important;
  padding-bottom: var(--runtime-sidebar-row-padding-y, 4px) !important;
  padding-left: var(--runtime-sidebar-row-padding-x, 8px) !important;
  transform: none !important;
}

/* -------------------
 * 65. Sidebar Stable Geometry Final Override
 * ------------------- */

html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) {
  --runtime-sidebar-content-indent: 6.25px !important;
  --runtime-sidebar-row-gap: 3px !important;
  --runtime-sidebar-row-padding-x: 8px !important;
  --runtime-sidebar-row-padding-y: 4px !important;
}

html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) {
  box-sizing: border-box !important;
  display: block !important;
  width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  max-width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: var(--runtime-sidebar-row-gap, 3px) !important;
  margin-left: var(--runtime-sidebar-content-indent, 6.25px) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  will-change: auto !important;
  transition-property: color, opacity, background-color !important;
}

html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
):is(:hover, :active, :focus, :focus-within, :focus-visible) {
  width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  max-width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: var(--runtime-sidebar-row-gap, 3px) !important;
  margin-left: var(--runtime-sidebar-content-indent, 6.25px) !important;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  will-change: auto !important;
}

html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"],
  [data-runtime-history-section-container="true"] > div
) :is(
  [data-runtime-conversation-row="true"],
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer
) {
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: var(--runtime-sidebar-row-min-height, 28px) !important;
  margin: 0 !important;
  padding: var(--runtime-sidebar-row-padding-y, 4px) var(--runtime-sidebar-row-padding-x, 8px) !important;
  border: 0 !important;
  border-radius: var(--runtime-sidebar-row-radius, 10px) !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-conversation-color, #050505) !important;
  filter: none !important;
  transform: none !important;
  will-change: auto !important;
  transition-property: background-color, color, box-shadow, opacity !important;
  transition-duration: 0.16s !important;
  transition-timing-function: ease !important;
}

html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"],
  [data-runtime-history-section-container="true"] > div
) :is(
  [data-runtime-conversation-row="true"],
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer
):is(:hover, :focus, :focus-visible, :focus-within) {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: var(--runtime-sidebar-row-padding-y, 4px) var(--runtime-sidebar-row-padding-x, 8px) !important;
  background: var(--runtime-sidebar-conversation-hover-bg, rgba(17, 17, 17, 0.05)) !important;
  background-color: var(--runtime-sidebar-conversation-hover-bg, rgba(17, 17, 17, 0.05)) !important;
  box-shadow: var(--runtime-sidebar-conversation-hover-shadow, var(--runtime-shadow-hover-ring)) !important;
  color: var(--runtime-sidebar-conversation-hover-color, #050505) !important;
  transform: none !important;
  will-change: auto !important;
}

html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"],
  [data-runtime-history-section-container="true"] > div
) :is(
  [data-runtime-conversation-row="true"][data-runtime-history-active="true"],
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer[data-runtime-history-active="true"]
) {
  background: var(--runtime-sidebar-conversation-active-bg, rgba(17, 17, 17, 0.09)) !important;
  background-color: var(--runtime-sidebar-conversation-active-bg, rgba(17, 17, 17, 0.09)) !important;
  box-shadow: var(--runtime-sidebar-conversation-active-shadow, var(--runtime-shadow-active-ring)) !important;
  color: var(--runtime-sidebar-conversation-active-color, #050505) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key][data-runtime-history-active="true"],
  [data-runtime-history-synthetic-wrapper="true"][data-runtime-history-active="true"]
) > :is(
  [data-runtime-conversation-row="true"],
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer
) {
  background: var(--runtime-sidebar-conversation-active-bg, rgba(17, 17, 17, 0.09)) !important;
  background-color: var(--runtime-sidebar-conversation-active-bg, rgba(17, 17, 17, 0.09)) !important;
  box-shadow: var(--runtime-sidebar-conversation-active-shadow, var(--runtime-shadow-active-ring)) !important;
  color: var(--runtime-sidebar-conversation-active-color, #050505) !important;
}

html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-conversation-row="true"]:not([data-runtime-history-active="true"]),
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer:not([data-runtime-history-active="true"])
):is(:focus:not(:hover):not(:focus-visible), :focus-within:not(:hover):not(:focus-visible)),
html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key]:not([data-runtime-history-active="true"]),
  [data-runtime-history-synthetic-wrapper="true"]:not([data-runtime-history-active="true"])
) > :is(
  [data-runtime-conversation-row="true"]:not([data-runtime-history-active="true"]),
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer:not([data-runtime-history-active="true"])
):is(:focus:not(:hover):not(:focus-visible), :focus-within:not(:hover):not(:focus-visible)) {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-conversation-color, #050505) !important;
}

/* -------------------
 * 66. Sidebar Conversation Wrapper Alignment
 * ------------------- */

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
) {
  width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  max-width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  margin-left: var(--runtime-sidebar-content-indent, 6.25px) !important;
  padding: 0 !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
):is(:hover, :active, :focus, :focus-within, :focus-visible) {
  width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  max-width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  margin-left: var(--runtime-sidebar-content-indent, 6.25px) !important;
  padding: 0 !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
),
html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm :is(
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"]
):is(:hover, :active, :focus, :focus-within, :focus-visible) {
  width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  max-width: calc(100% - var(--runtime-sidebar-content-indent, 6.25px)) !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  margin-left: var(--runtime-sidebar-content-indent, 6.25px) !important;
  padding: 0 !important;
  transform: none !important;
}

/* -------------------
 * 67. Dialog Minimal Surface Overrides
 * ------------------- */

body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] {
  background: var(--runtime-surface-panel, rgba(249, 250, 252, 0.97)) !important;
  background-color: var(--runtime-surface-panel, rgba(249, 250, 252, 0.97)) !important;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18) !important;
}

html body [data-runtime-knowledge-base-dialog="true"] {
  background: var(--runtime-surface-panel, rgba(249, 250, 252, 0.97)) !important;
  background-color: var(--runtime-surface-panel, rgba(249, 250, 252, 0.97)) !important;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] {
  background: var(--runtime-surface-panel, rgba(15, 23, 42, 0.97)) !important;
  background-color: var(--runtime-surface-panel, rgba(15, 23, 42, 0.97)) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34) !important;
}

html.dark body [data-runtime-knowledge-base-dialog="true"] {
  background: var(--runtime-surface-panel, rgba(15, 23, 42, 0.97)) !important;
  background-color: var(--runtime-surface-panel, rgba(15, 23, 42, 0.97)) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34) !important;
}

body[data-runtime-shell-ready="true"] :is(
  .runtime-knowledge-card,
  .runtime-knowledge-action-btn,
  .runtime-knowledge-doc-action-btn,
  .runtime-knowledge-base-item,
  .runtime-knowledge-doc-item,
  .runtime-project-manager-card,
  .runtime-project-manager-toolbar,
  .runtime-project-manager-selection-strip,
  .runtime-project-manager-scope-item,
  .runtime-project-manager-group-item,
  .runtime-project-manager-group-start-button,
  .runtime-project-manager-target-menu,
  .runtime-project-manager-target-option,
  .runtime-project-manager-action-btn,
  .runtime-project-manager-modal-button
) {
  box-shadow: none !important;
  transform: none !important;
}

html body :is(
  .runtime-knowledge-card,
  .runtime-knowledge-action-btn,
  .runtime-knowledge-doc-action-btn,
  .runtime-knowledge-base-item,
  .runtime-knowledge-doc-item,
  .runtime-project-manager-card,
  .runtime-project-manager-toolbar,
  .runtime-project-manager-selection-strip,
  .runtime-project-manager-scope-item,
  .runtime-project-manager-group-item,
  .runtime-project-manager-group-start-button,
  .runtime-project-manager-action-btn,
  .runtime-project-manager-modal-button
) {
  box-shadow: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] :is(
  .runtime-knowledge-card,
  .runtime-knowledge-card:hover,
  .runtime-project-manager-card,
  .runtime-project-manager-card:hover,
  .runtime-project-manager-toolbar,
  .runtime-project-manager-selection-strip,
  .runtime-project-manager-target-option
) {
  background: transparent !important;
  background-color: transparent !important;
}

html body :is(
  .runtime-knowledge-card,
  .runtime-knowledge-card:hover,
  .runtime-project-manager-card,
  .runtime-project-manager-card:hover,
  .runtime-project-manager-toolbar,
  .runtime-project-manager-selection-strip,
  .runtime-project-manager-target-option
) {
  background: transparent !important;
  background-color: transparent !important;
}

body[data-runtime-shell-ready="true"] :is(
  .runtime-knowledge-action-btn,
  .runtime-knowledge-doc-action-btn,
  .runtime-project-manager-action-btn,
  .runtime-project-manager-group-start-button,
  .runtime-project-manager-target-option,
  .runtime-project-manager-modal-button
) {
  border-color: transparent !important;
}

body[data-runtime-shell-ready="true"] .runtime-knowledge-action-btn:not([data-runtime-knowledge-base-action="save"]):not([data-tone="danger"]) {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-color-text-secondary, rgba(5, 5, 5, 0.64)) !important;
}

html.dark body[data-runtime-shell-ready="true"] .runtime-knowledge-action-btn:not([data-runtime-knowledge-base-action="save"]):not([data-tone="danger"]) {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-color-text-secondary, rgba(255, 255, 255, 0.66)) !important;
}

body[data-runtime-shell-ready="true"] :is(
  .runtime-project-manager-modal-header,
  .runtime-project-manager-modal-title,
  .runtime-project-manager-modal-message,
  .runtime-project-manager-modal-actions
) {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] .runtime-project-manager-modal-panel {
  border-color: rgba(15, 23, 42, 0.075) !important;
  background: rgb(238, 241, 246) !important;
  background-color: rgb(238, 241, 246) !important;
  background-image: none !important;
  box-shadow: 0 22px 64px rgba(15, 23, 42, 0.18) !important;
}

html.dark body[data-runtime-shell-ready="true"] .runtime-project-manager-modal-panel {
  background: rgb(18, 24, 34) !important;
  background-color: rgb(18, 24, 34) !important;
  background-image: none !important;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.34) !important;
}

body[data-runtime-shell-ready="true"] .runtime-project-manager-modal-input {
  border-color: transparent !important;
  background: rgba(15, 23, 42, 0.06) !important;
  background-color: rgba(15, 23, 42, 0.06) !important;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.075) !important;
  appearance: none !important;
}

html body[data-runtime-shell-ready="true"] input.runtime-project-manager-modal-input.runtime-project-manager-modal-input {
  border-color: transparent !important;
  background: rgba(15, 23, 42, 0.06) !important;
  background-color: rgba(15, 23, 42, 0.06) !important;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.075) !important;
  appearance: none !important;
}

html body[data-runtime-shell-ready="true"] input.runtime-project-manager-modal-input.runtime-project-manager-modal-input::selection {
  background: var(--runtime-accent-primary-soft, rgba(69, 82, 99, 0.14));
  color: rgba(17, 24, 39, 0.96);
}

html.dark body[data-runtime-shell-ready="true"] .runtime-project-manager-modal-input {
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07) !important;
}

html.dark body[data-runtime-shell-ready="true"] input.runtime-project-manager-modal-input.runtime-project-manager-modal-input {
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"] :is(
  .runtime-project-manager-modal-header,
  .runtime-project-manager-modal-actions
) {
  border: 0 !important;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"] .runtime-project-manager-modal-header {
  display: contents !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"] .runtime-project-manager-modal-title-break {
  display: block !important;
  height: 6px !important;
  line-height: 6px !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"] :is(
  .runtime-project-manager-modal-title,
  .runtime-project-manager-modal-message
) {
  width: auto !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"] .runtime-project-manager-modal-title {
  display: contents !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"] .runtime-project-manager-modal-message {
  display: contents !important;
}

html body[data-runtime-shell-ready="true"] input.runtime-project-manager-modal-input.runtime-project-manager-modal-input {
  display: block !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"] :is(
  .runtime-project-manager-modal-title,
  .runtime-project-manager-modal-message
) {
  background: none !important;
  background-color: transparent !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button:not([data-tone="primary"]):not([data-tone="danger"]) {
  background: transparent !important;
  background-color: transparent !important;
}

body[data-runtime-shell-ready="true"] :is(
  .runtime-project-manager-scope-item[data-active="true"],
  .runtime-project-manager-group-item[data-selected="true"]
) {
  background: rgba(15, 23, 42, 0.06) !important;
  background-color: rgba(15, 23, 42, 0.06) !important;
  box-shadow: inset 3px 0 0 rgba(15, 23, 42, 0.72) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .runtime-project-manager-scope-item[data-active="true"],
  .runtime-project-manager-group-item[data-selected="true"]
) {
  background: rgba(255, 255, 255, 0.1) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: inset 3px 0 0 rgba(248, 250, 252, 0.72) !important;
}

body[data-runtime-shell-ready="true"] .runtime-knowledge-base-item[data-active="true"] {
  background: rgba(15, 23, 42, 0.06) !important;
  background-color: rgba(15, 23, 42, 0.06) !important;
  box-shadow: inset 3px 0 0 rgba(15, 23, 42, 0.72) !important;
}

html body .runtime-knowledge-base-item[data-active="true"] {
  background: rgba(15, 23, 42, 0.06) !important;
  background-color: rgba(15, 23, 42, 0.06) !important;
  box-shadow: inset 3px 0 0 rgba(15, 23, 42, 0.72) !important;
}

html.dark body[data-runtime-shell-ready="true"] .runtime-knowledge-base-item[data-active="true"] {
  background: rgba(255, 255, 255, 0.1) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: inset 3px 0 0 rgba(248, 250, 252, 0.72) !important;
}

html.dark body .runtime-knowledge-base-item[data-active="true"] {
  background: rgba(255, 255, 255, 0.1) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: inset 3px 0 0 rgba(248, 250, 252, 0.72) !important;
}

body[data-runtime-shell-ready="true"] .runtime-knowledge-action-btn[data-runtime-knowledge-base-action="save"] {
  border-color: transparent !important;
  background: var(--runtime-accent-primary-surface, rgb(69, 82, 99)) !important;
  background-color: var(--runtime-accent-primary-surface, rgb(69, 82, 99)) !important;
  color: var(--runtime-accent-primary-text, #fff) !important;
}

html.dark body[data-runtime-shell-ready="true"] .runtime-knowledge-action-btn[data-runtime-knowledge-base-action="save"] {
  border-color: transparent !important;
  background: var(--runtime-accent-primary-surface, rgb(88, 102, 122)) !important;
  background-color: var(--runtime-accent-primary-surface, rgb(88, 102, 122)) !important;
  color: var(--runtime-accent-primary-text, #fff) !important;
}

body[data-runtime-shell-ready="true"] .runtime-project-manager-modal-button[data-tone="primary"] {
  border-color: transparent !important;
  background: var(--runtime-accent-primary-surface, rgb(69, 82, 99)) !important;
  background-color: var(--runtime-accent-primary-surface, rgb(69, 82, 99)) !important;
  color: var(--runtime-accent-primary-text, #fff) !important;
}

html.dark body[data-runtime-shell-ready="true"] .runtime-project-manager-modal-button[data-tone="primary"] {
  border-color: transparent !important;
  background: var(--runtime-accent-primary-surface, rgb(88, 102, 122)) !important;
  background-color: var(--runtime-accent-primary-surface, rgb(88, 102, 122)) !important;
  color: var(--runtime-accent-primary-text, #fff) !important;
}

body[data-runtime-shell-ready="true"] .runtime-project-manager-modal-button[data-tone="danger"],
body[data-runtime-shell-ready="true"] .runtime-knowledge-action-btn[data-tone="danger"],
body[data-runtime-shell-ready="true"] .runtime-knowledge-doc-action-btn[data-tone="danger"] {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-state-danger-text, rgba(153, 27, 27, 0.94)) !important;
}

html.dark body[data-runtime-shell-ready="true"] .runtime-project-manager-modal-button[data-tone="danger"],
html.dark body[data-runtime-shell-ready="true"] .runtime-knowledge-action-btn[data-tone="danger"],
html.dark body[data-runtime-shell-ready="true"] .runtime-knowledge-doc-action-btn[data-tone="danger"] {
  color: var(--runtime-state-danger-text, rgba(254, 202, 202, 0.94)) !important;
}

html body div.runtime-knowledge-card,
html body div.runtime-knowledge-card:hover,
html body div.runtime-knowledge-doc-item,
html body div.runtime-knowledge-doc-item:hover {
  box-shadow: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] input.runtime-project-manager-search-input.runtime-project-manager-search-input,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] input.runtime-project-manager-search-input.runtime-project-manager-search-input:is(:hover, :focus, :focus-visible, :active) {
  -webkit-appearance: none !important;
  appearance: none !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] input.runtime-project-manager-search-input.runtime-project-manager-search-input::-webkit-search-decoration,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] input.runtime-project-manager-search-input.runtime-project-manager-search-input::-webkit-search-cancel-button,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] input.runtime-project-manager-search-input.runtime-project-manager-search-input::-webkit-search-results-button,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] input.runtime-project-manager-search-input.runtime-project-manager-search-input::-webkit-search-results-decoration {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: none !important;
}

html body button.runtime-knowledge-action-btn,
html body button.runtime-knowledge-action-btn:is(:hover, :active, :focus, :focus-visible),
html body button.runtime-knowledge-doc-action-btn,
html body button.runtime-knowledge-doc-action-btn:is(:hover, :active, :focus, :focus-visible),
html body button.runtime-history-search-dialog-close,
html body button.runtime-history-search-dialog-close:is(:hover, :active, :focus, :focus-visible),
html body button.runtime-history-search-dialog-submit,
html body button.runtime-history-search-dialog-submit:is(:hover, :active, :focus, :focus-visible),
html body button.runtime-history-search-dialog-result,
html body button.runtime-history-search-dialog-result:is(:hover, :active, :focus, :focus-visible),
html body button.runtime-project-manager-group-start-button,
html body button.runtime-project-manager-group-start-button:is(:hover, :active, :focus, :focus-visible),
html body button.runtime-project-manager-modal-button,
html body button.runtime-project-manager-modal-button:is(:hover, :active, :focus, :focus-visible) {
  box-shadow: none !important;
  transform: none !important;
}

html body button.runtime-history-search-dialog-submit,
html body button.runtime-history-search-dialog-submit:is(:hover, :active, :focus, :focus-visible) {
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-close,
html body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-close,
body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-result,
html body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-result {
  border-color: transparent !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-close:is(:hover, :focus-visible),
html body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-close:is(:hover, :focus-visible) {
  background: rgba(15, 23, 42, 0.06) !important;
  background-color: rgba(15, 23, 42, 0.06) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-result:is(:hover, :focus-visible),
html body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-result:is(:hover, :focus-visible) {
  border-color: rgba(15, 23, 42, 0.05) !important;
  background: rgba(255, 255, 255, 0.48) !important;
  background-color: rgba(255, 255, 255, 0.48) !important;
  box-shadow: none !important;
  transform: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-close:is(:hover, :focus-visible),
html.dark body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-close:is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-result,
html.dark body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-result {
  border-color: transparent !important;
  background: transparent !important;
  background-color: transparent !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-result:is(:hover, :focus-visible),
html.dark body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-result:is(:hover, :focus-visible) {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.065) !important;
  background-color: rgba(255, 255, 255, 0.065) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-panel,
html body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-panel {
  width: min(420px, calc(100vw - 48px)) !important;
  border-color: rgba(15, 23, 42, 0.065) !important;
  background: rgb(238, 241, 246) !important;
  background-color: rgb(238, 241, 246) !important;
  background-image: none !important;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] :is(
  .runtime-history-search-dialog-header,
  .runtime-history-search-dialog-title,
  .runtime-history-search-dialog-message
),
html body [data-runtime-history-search-dialog="true"] :is(
  .runtime-history-search-dialog-header,
  .runtime-history-search-dialog-title,
  .runtime-history-search-dialog-message
) {
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-input-shell,
html body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-input-shell {
  min-height: 42px !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] input.runtime-history-search-dialog-input,
html body [data-runtime-history-search-dialog="true"] input.runtime-history-search-dialog-input {
  background: rgba(255, 255, 255, 0.68) !important;
  background-color: rgba(255, 255, 255, 0.68) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] input.runtime-history-search-dialog-input:focus,
html body [data-runtime-history-search-dialog="true"] input.runtime-history-search-dialog-input:focus {
  background: rgba(255, 255, 255, 0.82) !important;
  background-color: rgba(255, 255, 255, 0.82) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-submit,
body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-submit:is(:hover, :active, :focus, :focus-visible),
html body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-submit,
html body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-submit:is(:hover, :active, :focus, :focus-visible) {
  top: 6px !important;
  height: 30px !important;
  min-height: 30px !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-scopes,
html body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-scopes {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-scope,
body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-scope:is(:hover, :active, :focus, :focus-visible),
html body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-scope,
html body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-scope:is(:hover, :active, :focus, :focus-visible) {
  box-shadow: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-scope[data-active="true"],
html body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-scope[data-active="true"] {
  background: rgba(15, 23, 42, 0.055) !important;
  background-color: rgba(15, 23, 42, 0.055) !important;
  color: var(--runtime-color-text-primary, rgba(5, 5, 5, 0.86)) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-results,
html body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-results {
  gap: 0 !important;
  padding: 0 1px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-results:empty,
html body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-results:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-result:is(:hover, :focus-visible),
html body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-result:is(:hover, :focus-visible) {
  border-color: transparent !important;
  background: rgba(15, 23, 42, 0.055) !important;
  background-color: rgba(15, 23, 42, 0.055) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] [role="dialog"].runtime-history-search-dialog-panel button.runtime-history-search-dialog-result[data-runtime-history-search-dialog-result="true"] {
  border-color: transparent !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] [role="dialog"].runtime-history-search-dialog-panel button.runtime-history-search-dialog-result[data-runtime-history-search-dialog-result="true"]:is(:hover, :focus-visible) {
  border-color: transparent !important;
  background: rgba(15, 23, 42, 0.055) !important;
  background-color: rgba(15, 23, 42, 0.055) !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] [role="dialog"].runtime-history-search-dialog-panel button.runtime-history-search-dialog-result[data-runtime-history-search-dialog-result="true"][data-active="true"] {
  border-color: transparent !important;
  background: rgba(15, 23, 42, 0.045) !important;
  background-color: rgba(15, 23, 42, 0.045) !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-result,
html body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-result {
  display: grid !important;
  gap: 3px !important;
  min-height: 0 !important;
  padding: 9px 8px !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-result-title,
html body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-result-title {
  display: -webkit-box !important;
  padding-right: 0 !important;
  overflow: hidden !important;
  overflow-wrap: anywhere !important;
  text-overflow: clip !important;
  white-space: normal !important;
  word-break: break-word !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-result-meta,
html body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-result-meta {
  position: static !important;
  top: auto !important;
  right: auto !important;
  gap: 2px 0 !important;
  max-width: 100% !important;
  justify-content: flex-start !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-result-badge,
html body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-result-badge {
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-color-text-tertiary, rgba(5, 5, 5, 0.43)) !important;
  line-height: 1.25 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-result-badge + .runtime-history-search-dialog-result-badge::before,
html body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-result-badge + .runtime-history-search-dialog-result-badge::before {
  content: "·" !important;
  margin: 0 4px !important;
  color: var(--runtime-color-text-tertiary, rgba(5, 5, 5, 0.34)) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-result-snippet,
html body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-result-snippet {
  display: -webkit-box !important;
  margin-top: 1px !important;
  overflow: hidden !important;
  overflow-wrap: anywhere !important;
  text-overflow: clip !important;
  white-space: normal !important;
  word-break: break-word !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-empty,
body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-status,
html body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-empty,
html body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-status {
  margin: 11px 2px 0 !important;
  padding: 0 2px !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-load-more,
body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-load-more:is(:hover, :active, :focus, :focus-visible),
html body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-load-more,
html body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-load-more:is(:hover, :active, :focus, :focus-visible) {
  box-shadow: none !important;
  transform: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-panel,
html.dark body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-panel {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(18, 24, 34, 0.98) !important;
  background-color: rgba(18, 24, 34, 0.98) !important;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-results,
html.dark body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-results {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
  background: transparent !important;
  background-color: transparent !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-result:is(:hover, :focus-visible),
html.dark body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-result:is(:hover, :focus-visible) {
  border-color: transparent !important;
  background: rgba(255, 255, 255, 0.07) !important;
  background-color: rgba(255, 255, 255, 0.07) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-scope[data-active="true"],
html.dark body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-scope[data-active="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-load-more,
html.dark body [data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-load-more {
  background: rgba(255, 255, 255, 0.075) !important;
  background-color: rgba(255, 255, 255, 0.075) !important;
  color: var(--runtime-color-text-primary, rgba(255, 255, 255, 0.9)) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-result-badge,
html.dark body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-result-badge {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-color-text-secondary, rgba(255, 255, 255, 0.54)) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-result-badge + .runtime-history-search-dialog-result-badge::before,
html.dark body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-result-badge + .runtime-history-search-dialog-result-badge::before {
  color: var(--runtime-color-text-secondary, rgba(255, 255, 255, 0.38)) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-row="true"] [data-runtime-conversation-action-button="true"],
html body [data-runtime-conversation-row="true"] [data-runtime-conversation-action-button="true"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: currentColor !important;
  outline: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: none !important;
  overflow: visible !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-row="true"] [data-runtime-conversation-action-button="true"]::before,
body[data-runtime-shell-ready="true"] [data-runtime-conversation-row="true"] [data-runtime-conversation-action-button="true"]::after,
html body [data-runtime-conversation-row="true"] [data-runtime-conversation-action-button="true"]::before,
html body [data-runtime-conversation-row="true"] [data-runtime-conversation-action-button="true"]::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-row="true"] [data-runtime-conversation-action-button="true"] > span,
html body [data-runtime-conversation-row="true"] [data-runtime-conversation-action-button="true"] > span {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-row="true"] [data-runtime-conversation-action-button="true"] svg,
html body [data-runtime-conversation-row="true"] [data-runtime-conversation-action-button="true"] svg {
  width: 16px !important;
  height: 16px !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-synthetic-wrapper="true"]:hover,
  [data-runtime-history-synthetic-wrapper="true"][data-runtime-history-active="true"],
  [data-runtime-history-synthetic-wrapper="true"][data-runtime-conversation-action-open="true"]
) [data-runtime-conversation-action-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-conversation-row="true"]:is(:hover, :focus-within, [data-runtime-history-active="true"]) [data-runtime-conversation-action-button="true"],
html body [data-runtime-conversation-row="true"]:is(:hover, :focus-within, [data-runtime-history-active="true"]) [data-runtime-conversation-action-button="true"] {
  opacity: 0.72 !important;
  pointer-events: auto !important;
}

@media (hover: none), (pointer: coarse) {
  body[data-runtime-shell-ready="true"] [data-runtime-conversation-row="true"] [data-runtime-conversation-action-button="true"],
  html body [data-runtime-conversation-row="true"] [data-runtime-conversation-action-button="true"] {
    opacity: 0.72 !important;
    pointer-events: auto !important;
  }
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-row="true"] [data-runtime-conversation-action-button="true"]:is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"]),
html body [data-runtime-conversation-row="true"] [data-runtime-conversation-action-button="true"]:is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"]) {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  outline: none !important;
  color: var(--runtime-sidebar-conversation-active-color, #050505) !important;
  opacity: 1 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-section-menu-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-group-project-action="true"],
html body [data-runtime-project-section-menu-button="true"],
html body [data-runtime-group-project-action="true"],
body[data-runtime-shell-ready="true"] [data-runtime-project-section-menu-button="true"]:is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"]),
body[data-runtime-shell-ready="true"] [data-runtime-group-project-action="true"]:is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"]),
html body [data-runtime-project-section-menu-button="true"]:is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"]),
html body [data-runtime-group-project-action="true"]:is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"]) {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  outline: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-action-button="true"],
html body [data-runtime-conversation-action-button="true"],
body[data-runtime-shell-ready="true"] [data-runtime-conversation-action-button="true"]:is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"]),
html body [data-runtime-conversation-action-button="true"]:is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"]) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  outline: none !important;
  color: currentColor !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-action-button="true"]::before,
body[data-runtime-shell-ready="true"] [data-runtime-conversation-action-button="true"]::after,
html body [data-runtime-conversation-action-button="true"]::before,
html body [data-runtime-conversation-action-button="true"]::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-action-menu="true"],
html body [data-runtime-conversation-action-menu="true"] {
  box-sizing: border-box !important;
  min-width: 172px !important;
  max-width: min(236px, calc(100vw - 16px)) !important;
  max-height: calc(100vh - 16px) !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  scrollbar-width: thin !important;
  padding: 6px !important;
  border: 1px solid rgba(17, 17, 17, 0.08) !important;
  border-radius: 16px !important;
  background: rgba(238, 240, 242, 0.96) !important;
  background-color: rgba(238, 240, 242, 0.96) !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14), 0 2px 8px rgba(15, 23, 42, 0.08) !important;
  color: var(--runtime-sidebar-conversation-active-color, #050505) !important;
  backdrop-filter: blur(14px) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-action-menu-item="true"],
html body [data-runtime-conversation-action-menu-item="true"],
body[data-runtime-shell-ready="true"] button.runtime-conversation-action-menu-item[data-runtime-conversation-action-menu-item="true"],
html body button.runtime-conversation-action-menu-item[data-runtime-conversation-action-menu-item="true"] {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 33px !important;
  margin: 0 !important;
  padding: 7px 9px !important;
  border: 0 !important;
  border-radius: 10px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: inherit !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  cursor: pointer !important;
  transform: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-action-menu-item="true"]:is(:hover, :focus-visible),
html body [data-runtime-conversation-action-menu-item="true"]:is(:hover, :focus-visible),
body[data-runtime-shell-ready="true"] button.runtime-conversation-action-menu-item[data-runtime-conversation-action-menu-item="true"]:is(:hover, :focus-visible),
html body button.runtime-conversation-action-menu-item[data-runtime-conversation-action-menu-item="true"]:is(:hover, :focus-visible) {
  background: rgba(17, 17, 17, 0.055) !important;
  background-color: rgba(17, 17, 17, 0.055) !important;
  background-image: none !important;
  box-shadow: none !important;
  outline: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-action-menu-item="true"][data-tone="danger"],
html body [data-runtime-conversation-action-menu-item="true"][data-tone="danger"] {
  color: var(--runtime-state-danger-text, #dc2626) !important;
}

body[data-runtime-shell-ready="true"] .runtime-conversation-action-menu-icon,
html body .runtime-conversation-action-menu-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 20px !important;
  min-width: 20px !important;
  margin-right: 9px !important;
  color: currentColor !important;
  font-size: 15px !important;
  line-height: 1 !important;
  opacity: 0.84 !important;
}

body[data-runtime-shell-ready="true"] .runtime-conversation-action-menu-icon svg,
html body .runtime-conversation-action-menu-icon svg {
  display: block !important;
  width: 15px !important;
  height: 15px !important;
  flex: 0 0 15px !important;
}

body[data-runtime-shell-ready="true"] .runtime-conversation-action-menu-label,
html body .runtime-conversation-action-menu-label {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body[data-runtime-shell-ready="true"] .runtime-conversation-action-menu-divider,
html body .runtime-conversation-action-menu-divider {
  height: 1px !important;
  margin: 6px 4px !important;
  background: rgba(17, 17, 17, 0.08) !important;
  background-color: rgba(17, 17, 17, 0.08) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-conversation-row="true"] [data-runtime-conversation-action-button="true"]:is(:hover, :focus-visible),
html.dark body [data-runtime-conversation-row="true"] [data-runtime-conversation-action-button="true"]:is(:hover, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--runtime-sidebar-conversation-active-color, #ffffff) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-conversation-action-menu="true"],
html.dark body [data-runtime-conversation-action-menu="true"] {
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(24, 28, 36, 0.96) !important;
  background-color: rgba(24, 28, 36, 0.96) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38), 0 2px 8px rgba(0, 0, 0, 0.22) !important;
  color: var(--runtime-sidebar-conversation-active-color, #ffffff) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-conversation-action-menu-item="true"]:is(:hover, :focus-visible),
html.dark body [data-runtime-conversation-action-menu-item="true"]:is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-conversation-action-menu-item="true"],
html.dark body [data-runtime-conversation-action-menu-item="true"],
html.dark body[data-runtime-shell-ready="true"] button.runtime-conversation-action-menu-item[data-runtime-conversation-action-menu-item="true"],
html.dark body button.runtime-conversation-action-menu-item[data-runtime-conversation-action-menu-item="true"] {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-conversation-action-menu-item="true"]:is(:hover, :focus-visible),
html.dark body [data-runtime-conversation-action-menu-item="true"]:is(:hover, :focus-visible),
html.dark body[data-runtime-shell-ready="true"] button.runtime-conversation-action-menu-item[data-runtime-conversation-action-menu-item="true"]:is(:hover, :focus-visible),
html.dark body button.runtime-conversation-action-menu-item[data-runtime-conversation-action-menu-item="true"]:is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  background-image: none !important;
}

html.dark body[data-runtime-shell-ready="true"] .runtime-conversation-action-menu-divider,
html.dark body .runtime-conversation-action-menu-divider {
  background: rgba(255, 255, 255, 0.1) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] button.runtime-project-manager-group-start-button,
html body [data-runtime-project-manager-dialog="true"] button.runtime-project-manager-group-start-button {
  min-height: 24px !important;
  border-color: transparent !important;
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(15, 23, 42, 0.52) !important;
  box-shadow: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] button.runtime-project-manager-group-start-button:is(:hover, :focus-visible),
html body [data-runtime-project-manager-dialog="true"] button.runtime-project-manager-group-start-button:is(:hover, :focus-visible) {
  border-color: transparent !important;
  background: rgba(15, 23, 42, 0.055) !important;
  background-color: rgba(15, 23, 42, 0.055) !important;
  color: rgba(15, 23, 42, 0.72) !important;
  box-shadow: none !important;
  transform: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] button.runtime-project-manager-group-start-button,
html.dark body [data-runtime-project-manager-dialog="true"] button.runtime-project-manager-group-start-button {
  color: rgba(255, 255, 255, 0.62) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] button.runtime-project-manager-group-start-button:is(:hover, :focus-visible),
html.dark body [data-runtime-project-manager-dialog="true"] button.runtime-project-manager-group-start-button:is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, 0.075) !important;
  background-color: rgba(255, 255, 255, 0.075) !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

html body button.runtime-knowledge-base-item[data-active="true"],
html body button.runtime-knowledge-base-item[data-active="true"]:is(:hover, :active, :focus, :focus-visible) {
  background: rgba(15, 23, 42, 0.06) !important;
  background-color: rgba(15, 23, 42, 0.06) !important;
  box-shadow: inset 3px 0 0 rgba(15, 23, 42, 0.72) !important;
}

html.dark body button.runtime-knowledge-base-item[data-active="true"],
html.dark body button.runtime-knowledge-base-item[data-active="true"]:is(:hover, :active, :focus, :focus-visible) {
  background: rgba(255, 255, 255, 0.1) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: inset 3px 0 0 rgba(248, 250, 252, 0.72) !important;
}

/* -------------------
 * 69. Sidebar Comprehensive Runtime Refinement
 * ------------------- */

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) {
  --runtime-sidebar-text-primary: #050505 !important;
  --runtime-sidebar-text-secondary: rgba(17, 17, 17, 0.72) !important;
  --runtime-sidebar-text-muted: rgba(17, 17, 17, 0.52) !important;
  --runtime-sidebar-text-soft: rgba(17, 17, 17, 0.4) !important;
  --runtime-sidebar-surface-hover: rgba(17, 17, 17, 0.05) !important;
  --runtime-sidebar-surface-selected: rgba(17, 17, 17, 0.09) !important;
  --runtime-sidebar-surface-selected-hover: rgba(17, 17, 17, 0.12) !important;
  --runtime-sidebar-danger: #dc2626 !important;
  --runtime-sidebar-action-gap: 8px !important;
  --runtime-sidebar-action-block-gap: 15px !important;
  --runtime-sidebar-section-gap-favorite: 13px !important;
  --runtime-sidebar-section-gap-category: 14px !important;
  --runtime-sidebar-section-gap-history: 12px !important;
  --runtime-sidebar-row-gap: 5px !important;
  --runtime-sidebar-muted-section-color: var(--runtime-sidebar-text-muted) !important;
  --runtime-sidebar-date-color: var(--runtime-sidebar-text-soft) !important;
  --runtime-sidebar-action-color: rgba(17, 17, 17, 0.9) !important;
  --runtime-sidebar-conversation-color: var(--runtime-sidebar-text-primary) !important;
  --runtime-sidebar-conversation-hover-color: var(--runtime-sidebar-text-primary) !important;
  --runtime-sidebar-conversation-active-color: var(--runtime-sidebar-text-primary) !important;
  --runtime-sidebar-conversation-hover-bg: var(--runtime-sidebar-surface-hover) !important;
  --runtime-sidebar-conversation-active-bg: var(--runtime-sidebar-surface-selected) !important;
  --runtime-sidebar-conversation-active-hover-bg: var(--runtime-sidebar-surface-selected-hover) !important;
  overscroll-behavior: contain !important;
  scrollbar-gutter: stable !important;
  scroll-behavior: auto !important;
}

html.dark body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) {
  --runtime-sidebar-text-primary: #ffffff !important;
  --runtime-sidebar-text-secondary: rgba(255, 255, 255, 0.72) !important;
  --runtime-sidebar-text-muted: rgba(255, 255, 255, 0.58) !important;
  --runtime-sidebar-text-soft: rgba(255, 255, 255, 0.46) !important;
  --runtime-sidebar-surface-hover: rgba(255, 255, 255, 0.09) !important;
  --runtime-sidebar-surface-selected: rgba(255, 255, 255, 0.145) !important;
  --runtime-sidebar-surface-selected-hover: rgba(255, 255, 255, 0.18) !important;
  --runtime-sidebar-danger: #fca5a5 !important;
  --runtime-sidebar-action-color: rgba(243, 243, 243, 0.88) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-top-action-group="true"] {
  transform: none !important;
  will-change: auto !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-header-row="true"],
body[data-runtime-shell-ready="true"] [data-runtime-project-section="true"],
body[data-runtime-shell-ready="true"] [data-runtime-history-date-heading="true"] {
  color: var(--runtime-sidebar-muted-section-color, rgba(17, 17, 17, 0.5)) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-conversation-row="true"],
body[data-runtime-shell-ready="true"] [data-runtime-history-group-key],
body[data-runtime-shell-ready="true"] [data-runtime-history-synthetic-wrapper="true"] {
  backface-visibility: hidden !important;
  transform: none !important;
  will-change: auto !important;
}

body[data-runtime-shell-ready="true"] .runtime-project-manager-target-menu,
body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] div.runtime-project-manager-target-menu.runtime-project-manager-target-menu {
  background: rgb(238, 241, 246) !important;
  background-color: rgb(238, 241, 246) !important;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14) !important;
}

html.dark body[data-runtime-shell-ready="true"] .runtime-project-manager-target-menu,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] div.runtime-project-manager-target-menu.runtime-project-manager-target-menu {
  background: rgba(18, 24, 34, 0.98) !important;
  background-color: rgba(18, 24, 34, 0.98) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32) !important;
}

body[data-runtime-shell-ready="true"] .runtime-project-manager-target-option,
body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] button.runtime-project-manager-target-option.runtime-project-manager-target-option {
  min-height: 34px !important;
  padding: 0 10px !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] .runtime-project-manager-target-option:is(:hover, [data-selected="true"]),
body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] button.runtime-project-manager-target-option.runtime-project-manager-target-option:is(:hover, [data-selected="true"]) {
  background: rgba(15, 23, 42, 0.06) !important;
  background-color: rgba(15, 23, 42, 0.06) !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] .runtime-project-manager-target-option:is(:hover, [data-selected="true"]),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] button.runtime-project-manager-target-option.runtime-project-manager-target-option:is(:hover, [data-selected="true"]) {
  background: rgba(255, 255, 255, 0.09) !important;
  background-color: rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-message,
html body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-message {
  display: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-recent-list,
html body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-recent-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin: 3px 0 2px !important;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] :is(
  .runtime-history-search-dialog-recent-chip,
  .runtime-history-search-dialog-recent-clear
),
html body [data-runtime-history-search-dialog="true"] :is(
  .runtime-history-search-dialog-recent-chip,
  .runtime-history-search-dialog-recent-clear
) {
  min-height: 26px !important;
  padding: 0 10px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(15, 23, 42, 0.045) !important;
  background-color: rgba(15, 23, 42, 0.045) !important;
  color: var(--runtime-color-text-secondary, rgba(5, 5, 5, 0.62)) !important;
  box-shadow: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-recent-clear,
html body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-recent-clear {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-color-text-tertiary, rgba(5, 5, 5, 0.46)) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] :is(
  .runtime-history-search-dialog-recent-chip,
  .runtime-history-search-dialog-recent-clear
):is(:hover, :focus-visible),
html body [data-runtime-history-search-dialog="true"] :is(
  .runtime-history-search-dialog-recent-chip,
  .runtime-history-search-dialog-recent-clear
):is(:hover, :focus-visible) {
  background: rgba(15, 23, 42, 0.075) !important;
  background-color: rgba(15, 23, 42, 0.075) !important;
  color: var(--runtime-color-text-primary, rgba(5, 5, 5, 0.86)) !important;
  outline: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-recent-chip,
html.dark body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-recent-chip {
  background: rgba(255, 255, 255, 0.075) !important;
  background-color: rgba(255, 255, 255, 0.075) !important;
  color: var(--runtime-color-text-secondary, rgba(255, 255, 255, 0.66)) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-recent-clear,
html.dark body [data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-recent-clear {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-color-text-tertiary, rgba(255, 255, 255, 0.46)) !important;
}

/* -------------------
 * 69. Sidebar Flat Boundary
 * ------------------- */

:root {
  --runtime-surface-shell: #f5f6f8 !important;
  --sidebar-bg: #f5f6f8 !important;
}

html.dark {
  --runtime-surface-shell: #181818 !important;
  --sidebar-bg: #181818 !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-sidebar-root="true"],
  [data-runtime-sidebar-main="true"],
  [data-runtime-sidebar-panel="true"],
  main.flex.flex-col.h-full.flex-1,
  .custom-scrollbar.px-4.overflow-y-auto.h-full:has(> .flex.flex-col.gap-3.text-sm)
),
html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-sidebar-root="true"],
  [data-runtime-sidebar-main="true"],
  [data-runtime-sidebar-panel="true"],
  main.flex.flex-col.h-full.flex-1,
  .custom-scrollbar.px-4.overflow-y-auto.h-full:has(> .flex.flex-col.gap-3.text-sm)
) {
  border-right: 0 !important;
  border-left: 0 !important;
  box-shadow: none !important;
  background: var(--sidebar-bg) !important;
  background-color: var(--sidebar-bg) !important;
  background-image: none !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-sidebar-root="true"],
  [data-runtime-sidebar-main="true"],
  [data-runtime-sidebar-panel="true"]
)::before,
body[data-runtime-shell-ready="true"] :is(
  [data-runtime-sidebar-root="true"],
  [data-runtime-sidebar-main="true"],
  [data-runtime-sidebar-panel="true"]
)::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  box-shadow: none !important;
  background: none !important;
  background-image: none !important;
}

/* -------------------
 * 70. Composer Input Polish
 * ------------------- */

:root {
  --runtime-composer-polish-surface: #ffffff !important;
  --runtime-composer-polish-control: var(--runtime-composer-polish-surface) !important;
  --runtime-composer-polish-control-hover: var(--runtime-composer-polish-surface) !important;
  --runtime-composer-polish-control-active: var(--runtime-composer-polish-surface) !important;
  --runtime-composer-polish-control-selected: var(--runtime-composer-polish-surface) !important;
  --runtime-composer-polish-control-color: rgba(17, 24, 39, 0.72) !important;
  --runtime-composer-polish-control-color-active: rgba(17, 24, 39, 0.92) !important;
  --runtime-composer-polish-control-ring: rgba(17, 24, 39, 0.055) !important;
  --runtime-composer-polish-control-shadow: 0 0 0 2px rgba(15, 23, 42, 0.042), 0 0 14px rgba(15, 23, 42, 0.021) !important;
  --runtime-composer-polish-control-hover-shadow: 0 0 0 2px rgba(15, 23, 42, 0.052), 0 0 17px rgba(15, 23, 42, 0.026) !important;
  --runtime-composer-polish-control-selected-shadow: 0 0 0 2px rgba(15, 23, 42, 0.062), 0 0 20px rgba(15, 23, 42, 0.032) !important;
  --runtime-composer-polish-frame-shadow: 0 0 0 2px rgba(15, 23, 42, 0.08) !important;
  --runtime-composer-polish-primary: #111111 !important;
  --runtime-composer-polish-primary-hover: #000000 !important;
  --runtime-composer-polish-shadow: 0 0 0 2px rgba(15, 23, 42, 0.048), 0 0 22px rgba(15, 23, 42, 0.024) !important;
  --runtime-plugin-tool-entry-button-open: var(--runtime-composer-polish-control-selected) !important;
}

html.dark {
  --runtime-composer-polish-surface: #101010 !important;
  --runtime-composer-polish-control: var(--runtime-composer-polish-surface) !important;
  --runtime-composer-polish-control-hover: var(--runtime-composer-polish-surface) !important;
  --runtime-composer-polish-control-active: var(--runtime-composer-polish-surface) !important;
  --runtime-composer-polish-control-selected: var(--runtime-composer-polish-surface) !important;
  --runtime-composer-polish-control-color: rgba(245, 245, 245, 0.7) !important;
  --runtime-composer-polish-control-color-active: rgba(245, 245, 245, 0.94) !important;
  --runtime-composer-polish-control-ring: rgba(255, 255, 255, 0.055) !important;
  --runtime-composer-polish-control-shadow: 0 0 0 2px rgba(255, 255, 255, 0.042), 0 0 14px rgba(0, 0, 0, 0.14) !important;
  --runtime-composer-polish-control-hover-shadow: 0 0 0 2px rgba(255, 255, 255, 0.052), 0 0 17px rgba(0, 0, 0, 0.17) !important;
  --runtime-composer-polish-control-selected-shadow: 0 0 0 2px rgba(255, 255, 255, 0.062), 0 0 20px rgba(0, 0, 0, 0.21) !important;
  --runtime-composer-polish-frame-shadow: 0 0 0 2px rgba(255, 255, 255, 0.055) !important;
  --runtime-composer-polish-primary: #f3f3f3 !important;
  --runtime-composer-polish-primary-hover: #ffffff !important;
  --runtime-composer-polish-shadow: 0 0 0 2px rgba(255, 255, 255, 0.044), 0 0 22px rgba(0, 0, 0, 0.15) !important;
  --runtime-plugin-tool-entry-button-open-dark: var(--runtime-composer-polish-control-selected) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] {
  border: 0 !important;
  outline: 0 !important;
  background: var(--runtime-composer-polish-surface) !important;
  background-color: var(--runtime-composer-polish-surface) !important;
  background-image: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"]:not(#runtime-composer-card-polish-lock) {
  border: 0 !important;
  outline: 0 !important;
  background: var(--runtime-composer-polish-surface) !important;
  background-color: var(--runtime-composer-polish-surface) !important;
  background-image: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  [data-runtime-composer-input-wrap="true"],
  textarea[aria-label="聊天消息输入框"],
  textarea[aria-label="聊天消息输入框"]:hover,
  textarea[aria-label="聊天消息输入框"]:focus,
  textarea[aria-label="聊天消息输入框"]:focus-visible
) {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] textarea[aria-label="聊天消息输入框"] {
  color: var(--runtime-color-text-primary, rgba(17, 24, 39, 0.88)) !important;
  caret-color: var(--runtime-color-text-primary, rgba(17, 24, 39, 0.88)) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] textarea[aria-label="聊天消息输入框"]:not(#runtime-composer-input-polish-lock) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] textarea[aria-label="聊天消息输入框"]::placeholder {
  color: var(--runtime-color-text-tertiary, rgba(17, 24, 39, 0.42)) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-private-chat-notice="true"] {
  order: 20 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-bar="true"] {
  order: 30 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-button-container="true"],
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"],
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-submit="true"] {
  order: 40 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-tools="true"] {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px !important;
  overflow: visible !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  [data-runtime-composer-tools="true"] button,
  [data-runtime-composer-tools="true"] [role="button"],
  [data-runtime-plugin-tool-entry-button="true"],
  [data-runtime-knowledge-base-entry-button="true"],
  button.btn-pill,
  .btn-pill[role="button"]
) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  height: 34px !important;
  padding: 0 10px !important;
  border: 0 !important;
  border-radius: 999px !important;
  outline: 0 !important;
  background: var(--runtime-composer-polish-control) !important;
  background-color: var(--runtime-composer-polish-control) !important;
  background-image: none !important;
  color: var(--runtime-composer-polish-control-color) !important;
  --runtime-shadow-selected: var(--runtime-composer-polish-control-selected-shadow) !important;
  box-shadow: var(--runtime-composer-polish-control-shadow) !important;
  transform: none !important;
  transition:
    background-color 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease,
    opacity 0.16s ease !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  [data-runtime-plugin-tool-entry-button="true"],
  [data-runtime-knowledge-base-entry-button="true"]
) {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 128px !important;
  overflow: hidden !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  [data-runtime-plugin-tool-entry-label="true"],
  [data-runtime-knowledge-base-entry-button="true"] > span:not([data-runtime-knowledge-base-entry-icon="true"]):not([data-runtime-knowledge-base-entry-count="true"])
) {
  display: block !important;
  flex: 0 1 auto !important;
  min-width: 0 !important;
  max-width: 86px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  [data-runtime-plugin-tool-entry-icon="true"],
  [data-runtime-knowledge-base-entry-icon="true"],
  [data-runtime-knowledge-base-entry-count="true"]
) {
  flex: 0 0 auto !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  [data-runtime-composer-tools="true"] button:hover,
  [data-runtime-composer-tools="true"] [role="button"]:hover,
  [data-runtime-plugin-tool-entry-button="true"]:hover,
  [data-runtime-knowledge-base-entry-button="true"]:hover,
  button.btn-pill:hover,
  .btn-pill[role="button"]:hover
) {
  background: var(--runtime-composer-polish-control-hover) !important;
  background-color: var(--runtime-composer-polish-control-hover) !important;
  color: var(--runtime-composer-polish-control-color-active) !important;
  box-shadow: var(--runtime-composer-polish-control-hover-shadow) !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  [data-runtime-composer-tools="true"] button:active,
  [data-runtime-composer-tools="true"] [role="button"]:active,
  [data-runtime-plugin-tool-entry-button="true"]:active,
  [data-runtime-knowledge-base-entry-button="true"]:active,
  button.btn-pill:active,
  .btn-pill[role="button"]:active
) {
  background: var(--runtime-composer-polish-control-active) !important;
  background-color: var(--runtime-composer-polish-control-active) !important;
  color: var(--runtime-composer-polish-control-color-active) !important;
  box-shadow: var(--runtime-composer-polish-control-selected-shadow) !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  [data-runtime-composer-tools="true"] button[aria-pressed="true"],
  [data-runtime-composer-tools="true"] button[aria-expanded="true"],
  [data-runtime-composer-tools="true"] button[data-active="true"],
  [data-runtime-composer-tools="true"] button[data-state="active"],
  [data-runtime-composer-tools="true"] [role="button"][aria-pressed="true"],
  [data-runtime-composer-tools="true"] [role="button"][aria-expanded="true"],
  [data-runtime-composer-tools="true"] [role="button"][data-active="true"],
  [data-runtime-composer-tools="true"] [role="button"][data-state="active"],
  [data-runtime-plugin-tool-entry-root="true"][data-runtime-plugin-tool-entry-open="true"] [data-runtime-plugin-tool-entry-button="true"],
  [data-runtime-plugin-tool-entry-button="true"][aria-expanded="true"],
  [data-runtime-knowledge-base-entry-button="true"][aria-pressed="true"],
  [data-runtime-knowledge-base-entry-button="true"][data-active="true"],
  button.btn-pill.btn-pill-active,
  button.btn-pill.active,
  .btn-pill[role="button"].btn-pill-active,
  .btn-pill[role="button"].active
) {
  background: var(--runtime-composer-polish-control-selected) !important;
  background-color: var(--runtime-composer-polish-control-selected) !important;
  color: var(--runtime-composer-polish-control-color-active) !important;
  box-shadow: var(--runtime-composer-polish-control-selected-shadow) !important;
  transform: none !important;
}

@media (max-width: 768px) {
  body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
    [data-runtime-plugin-tool-entry-button="true"],
    [data-runtime-knowledge-base-entry-button="true"]
  ) {
    flex-basis: auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 112px !important;
  }

  body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
    [data-runtime-plugin-tool-entry-label="true"],
    [data-runtime-knowledge-base-entry-button="true"] > span:not([data-runtime-knowledge-base-entry-icon="true"]):not([data-runtime-knowledge-base-entry-count="true"])
  ) {
    max-width: 72px !important;
  }
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-submit="true"],
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :has(> button.btn-send),
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :has(> button.btn-stop) {
  align-items: center !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  [data-runtime-composer-submit="true"] .btn-send,
  button.btn-send
) {
  min-width: 34px !important;
  min-height: 34px !important;
  height: 34px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--runtime-composer-polish-primary) !important;
  background-color: var(--runtime-composer-polish-primary) !important;
  background-image: none !important;
  color: var(--runtime-color-text-inverse, #ffffff) !important;
  box-shadow: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  [data-runtime-composer-submit="true"] .btn-send:hover,
  [data-runtime-composer-submit="true"] .btn-send:focus-visible,
  button.btn-send:hover,
  button.btn-send:focus-visible
) {
  background: var(--runtime-composer-polish-primary-hover) !important;
  background-color: var(--runtime-composer-polish-primary-hover) !important;
  box-shadow: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  [data-runtime-composer-submit="true"] .btn-send:disabled,
  [data-runtime-composer-submit="true"] .btn-send[disabled],
  [data-runtime-composer-submit="true"] .btn-send[data-runtime-composer-submit-blocked="true"],
  button.btn-send:disabled,
  button.btn-send[disabled],
  button.btn-send[data-runtime-composer-submit-blocked="true"]
) {
  opacity: 0.42 !important;
  cursor: not-allowed !important;
}

body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  [data-runtime-composer-submit="true"] .btn-send[data-runtime-composer-submit-blocked="true"]:hover,
  [data-runtime-composer-submit="true"] .btn-send[data-runtime-composer-submit-blocked="true"]:focus-visible,
  button.btn-send[data-runtime-composer-submit-blocked="true"]:hover,
  button.btn-send[data-runtime-composer-submit-blocked="true"]:focus-visible
) {
  background: var(--runtime-composer-polish-primary) !important;
  background-color: var(--runtime-composer-polish-primary) !important;
  color: var(--runtime-color-text-inverse, #ffffff) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* -------------------
 * 71. Default Theme Global Ring Shadow Lock
 * ------------------- */

:root {
  --runtime-shadow-subtle: 0 0 0 2px rgba(15, 23, 42, 0.042), 0 0 14px rgba(15, 23, 42, 0.021) !important;
  --runtime-shadow-hover-ring: 0 0 0 2px rgba(15, 23, 42, 0.052), 0 0 17px rgba(15, 23, 42, 0.026) !important;
  --runtime-shadow-active-ring: 0 0 0 2px rgba(15, 23, 42, 0.105), 0 0 22px rgba(15, 23, 42, 0.06) !important;
  --runtime-shadow-selected: 0 0 0 2px rgba(15, 23, 42, 0.048), 0 0 22px rgba(15, 23, 42, 0.024) !important;
  --runtime-shadow-unified: var(--runtime-shadow-selected) !important;
  --runtime-shadow-floating: var(--runtime-shadow-selected) !important;
  --runtime-shadow-soft: var(--runtime-shadow-selected) !important;
  --runtime-shadow-strong: var(--runtime-shadow-selected) !important;
  --runtime-shadow-composer: var(--runtime-shadow-selected) !important;
  --runtime-shadow-primary: var(--runtime-shadow-selected) !important;
  --runtime-shell-shadow: var(--runtime-shadow-selected) !important;
  --runtime-shell-card-shadow: var(--runtime-shadow-selected) !important;
  --runtime-shell-card-shadow-strong: var(--runtime-shadow-selected) !important;
  --runtime-v12-card-shadow: var(--runtime-shadow-selected) !important;
  --runtime-v30-button-shadow: var(--runtime-shadow-selected) !important;
  --runtime-v30-button-shadow-strong: var(--runtime-shadow-selected) !important;
  --glass-shadow: var(--runtime-shadow-selected) !important;
  --shadow-convex: var(--runtime-shadow-selected) !important;
  --shadow-concave: var(--runtime-shadow-selected) !important;
  --shadow-flat: var(--runtime-shadow-selected) !important;
  --shadow-concave-shallow: var(--runtime-shadow-selected) !important;
  --runtime-composer-polish-control-shadow: var(--runtime-shadow-subtle) !important;
  --runtime-composer-polish-control-hover-shadow: var(--runtime-shadow-hover-ring) !important;
  --runtime-composer-polish-control-selected-shadow: var(--runtime-shadow-active-ring) !important;
  --runtime-composer-polish-shadow: var(--runtime-shadow-selected) !important;
}

html.dark {
  --runtime-shadow-subtle: 0 0 0 2px rgba(255, 255, 255, 0.042), 0 0 14px rgba(0, 0, 0, 0.14) !important;
  --runtime-shadow-hover-ring: 0 0 0 2px rgba(255, 255, 255, 0.052), 0 0 17px rgba(0, 0, 0, 0.17) !important;
  --runtime-shadow-active-ring: 0 0 0 2px rgba(255, 255, 255, 0.105), 0 0 22px rgba(0, 0, 0, 0.28) !important;
  --runtime-shadow-selected: 0 0 0 2px rgba(255, 255, 255, 0.044), 0 0 22px rgba(0, 0, 0, 0.15) !important;
  --runtime-composer-polish-control-shadow: var(--runtime-shadow-subtle) !important;
  --runtime-composer-polish-control-hover-shadow: var(--runtime-shadow-hover-ring) !important;
  --runtime-composer-polish-control-selected-shadow: var(--runtime-shadow-active-ring) !important;
  --runtime-composer-polish-shadow: var(--runtime-shadow-selected) !important;
}

body[data-runtime-shell-ready="true"] {
  --runtime-shadow-unified: var(--runtime-shadow-selected) !important;
  --runtime-shadow-floating: var(--runtime-shadow-selected) !important;
  --runtime-shadow-soft: var(--runtime-shadow-selected) !important;
  --runtime-shadow-strong: var(--runtime-shadow-selected) !important;
  --runtime-shadow-composer: var(--runtime-shadow-selected) !important;
  --runtime-shadow-primary: var(--runtime-shadow-selected) !important;
  --runtime-shell-shadow: var(--runtime-shadow-selected) !important;
  --runtime-shell-card-shadow: var(--runtime-shadow-selected) !important;
  --runtime-shell-card-shadow-strong: var(--runtime-shadow-selected) !important;
  --runtime-v12-card-shadow: var(--runtime-shadow-selected) !important;
  --runtime-v30-button-shadow: var(--runtime-shadow-selected) !important;
  --runtime-v30-button-shadow-strong: var(--runtime-shadow-selected) !important;
  --glass-shadow: var(--runtime-shadow-selected) !important;
  --shadow-convex: var(--runtime-shadow-selected) !important;
  --shadow-concave: var(--runtime-shadow-selected) !important;
  --shadow-flat: var(--runtime-shadow-selected) !important;
  --shadow-concave-shallow: var(--runtime-shadow-selected) !important;
}

body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) {
  --runtime-sidebar-top-action-hover-shadow: var(--runtime-shadow-hover-ring) !important;
  --runtime-sidebar-top-action-current-shadow: var(--runtime-shadow-active-ring) !important;
  --runtime-sidebar-top-action-active-shadow: var(--runtime-shadow-active-ring) !important;
  --runtime-sidebar-conversation-hover-shadow: var(--runtime-shadow-hover-ring) !important;
  --runtime-sidebar-conversation-active-shadow: var(--runtime-shadow-active-ring) !important;
}

body[data-runtime-shell-ready="true"] :is(
  .shadow,
  .shadow-sm,
  .shadow-md,
  .shadow-lg,
  .shadow-xl,
  .shadow-2xl,
  .n-card,
  .n-modal,
  .n-drawer,
  .n-popover,
  .n-dialog,
  .n-dropdown-menu,
  .n-base-select-menu,
  .n-select-menu,
  .n-base-selection,
  .n-input,
  .n-button,
  .menu-items,
  [role="dialog"] > div,
  .fixed.inset-0.z-\[55\] > div,
  .fixed.inset-0.z-\[60\] > div,
  .fixed.inset-0.z-\[70\] > div,
  [data-runtime-plugin-tool-entry-menu="true"],
  [data-runtime-knowledge-base-dialog="true"],
  [data-runtime-project-manager-dialog="true"],
  .runtime-project-manager-modal-panel,
  .runtime-project-manager-target-menu,
  [data-runtime-conversation-action-menu="true"],
  [data-runtime-history-scroll-top-button="true"]
) {
  box-shadow: var(--runtime-shadow-selected) !important;
}

body[data-runtime-shell-ready="true"] :is(
  button:focus-visible,
  [role="button"]:focus-visible,
  a:focus-visible,
  textarea:focus-visible,
  input:focus-visible,
  select:focus-visible,
  .runtime-project-manager-modal-input,
  input.runtime-project-manager-modal-input.runtime-project-manager-modal-input
) {
  outline: 0 !important;
  box-shadow: var(--runtime-shadow-subtle) !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
)[data-runtime-top-action-pointer-over="true"],
body[data-runtime-shell-ready="true"] :is(
  [data-runtime-conversation-row="true"],
  [data-runtime-history-group-key].relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  [data-runtime-history-synthetic-wrapper="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  [data-runtime-history-section-container="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer
):is(:hover, :focus, :focus-visible, :focus-within),
body[data-runtime-shell-ready="true"] .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer:is(:hover, :focus, :focus-visible, :focus-within),
body[data-runtime-shell-ready="true"] [data-runtime-history-scroll-top-button="true"]:is(:hover, :focus-visible) {
  box-shadow: var(--runtime-shadow-hover-ring) !important;
}

body[data-runtime-shell-ready="true"] :is(
  [data-runtime-history-new-chat-button="true"],
  [data-runtime-history-search-button="true"],
  [data-runtime-project-create-button="true"],
  [data-runtime-history-app-market-button="true"]
):is(:active, [data-runtime-top-action-state="active"]),
body[data-runtime-shell-ready="true"] :is(
  [data-runtime-conversation-row="true"][data-runtime-history-active="true"],
  [data-runtime-history-group-key][data-runtime-history-active="true"].relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  [data-runtime-history-synthetic-wrapper="true"][data-runtime-history-active="true"] > .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer,
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer[data-runtime-history-active="true"],
  .runtime-knowledge-base-item[data-active="true"],
  .runtime-project-manager-scope-item[data-active="true"],
  .runtime-project-manager-group-item[data-selected="true"],
  .runtime-project-manager-target-option[data-selected="true"]
) {
  box-shadow: var(--runtime-shadow-active-ring) !important;
}

body[data-runtime-shell-ready="true"] :is(
  .shadow-none,
  [class^="shadow-none"],
  [class*=" shadow-none"],
  [data-runtime-composer-input-wrap="true"],
  textarea[aria-label="聊天消息输入框"],
  [data-runtime-composer-tools="true"],
  [data-runtime-history-section-container="true"],
  [data-runtime-history-group-key],
  [data-runtime-history-synthetic-wrapper="true"],
  .runtime-knowledge-card,
  .runtime-knowledge-doc-item,
  .runtime-project-manager-card,
  .runtime-project-manager-toolbar,
  .runtime-project-manager-selection-strip,
  .runtime-project-manager-action-btn,
  .runtime-project-manager-group-start-button,
  .runtime-project-manager-modal-button,
  .runtime-project-manager-target-option:not([data-selected="true"]),
  [data-runtime-conversation-action-menu-item="true"]
) {
  box-shadow: none !important;
}

/* -------------------
 * 72. High Specificity Ring Shadow Overrides
 * ------------------- */

html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) {
  --runtime-sidebar-top-action-hover-shadow: var(--runtime-shadow-hover-ring) !important;
  --runtime-sidebar-top-action-current-shadow: var(--runtime-shadow-active-ring) !important;
  --runtime-sidebar-top-action-active-shadow: var(--runtime-shadow-active-ring) !important;
  --runtime-sidebar-conversation-hover-shadow: var(--runtime-shadow-hover-ring) !important;
  --runtime-sidebar-conversation-active-shadow: var(--runtime-shadow-active-ring) !important;
}

html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) :is(
  [data-runtime-conversation-row="true"],
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer
):is(:hover, :focus, :focus-visible, :focus-within) {
  box-shadow: var(--runtime-shadow-hover-ring) !important;
}

html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) :is(
  [data-runtime-conversation-row="true"][data-runtime-history-active="true"],
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer[data-runtime-history-active="true"]
),
html body[data-runtime-shell-ready="true"] div.flex.flex-col.gap-3.text-sm:has([data-runtime-history-top-action-group="true"]) :is(
  [data-runtime-history-group-key][data-runtime-history-active="true"],
  [data-runtime-history-synthetic-wrapper="true"][data-runtime-history-active="true"]
) > :is(
  [data-runtime-conversation-row="true"],
  .relative.flex.items-center.gap-3.rounded-lg.cursor-pointer
) {
  box-shadow: var(--runtime-shadow-active-ring) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"].runtime-project-manager-dialog,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] div.runtime-project-manager-target-menu.runtime-project-manager-target-menu,
html body[data-runtime-shell-ready="true"] .runtime-project-manager-modal-panel.runtime-project-manager-modal-panel,
html body[data-runtime-shell-ready="true"] [data-runtime-conversation-action-menu="true"].runtime-conversation-action-menu {
  box-shadow: var(--runtime-shadow-selected) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] button.runtime-project-manager-target-option.runtime-project-manager-target-option[data-selected="true"] {
  box-shadow: var(--runtime-shadow-active-ring) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"] button.runtime-project-manager-target-option.runtime-project-manager-target-option:not([data-selected="true"]) {
  box-shadow: none !important;
}

/* -------------------
 * 73. Knowledge Base Composer Icon And Static Hover
 * ------------------- */

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-knowledge-base-entry-button="true"] [data-runtime-knowledge-base-entry-icon="true"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  color: currentColor !important;
  line-height: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-knowledge-base-entry-button="true"] [data-runtime-knowledge-base-entry-icon="true"] svg {
  display: block !important;
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] button[data-runtime-knowledge-base-item="true"].runtime-knowledge-base-item.runtime-knowledge-base-item:not([data-active="true"]),
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] button[data-runtime-knowledge-base-item="true"].runtime-knowledge-base-item.runtime-knowledge-base-item:not([data-active="true"]):is(:hover, :focus, :focus-visible, :active) {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-color-text-secondary, rgba(5, 5, 5, 0.64)) !important;
  box-shadow: none !important;
  transform: none !important;
  transition-property: color, box-shadow, opacity !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] button[data-runtime-knowledge-base-item="true"].runtime-knowledge-base-item.runtime-knowledge-base-item:not([data-active="true"]),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] button[data-runtime-knowledge-base-item="true"].runtime-knowledge-base-item.runtime-knowledge-base-item:not([data-active="true"]):is(:hover, :focus, :focus-visible, :active) {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-color-text-secondary, rgba(255, 255, 255, 0.66)) !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-base-row,
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-base-row:is(:hover, :focus-within),
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] [data-runtime-knowledge-base-scroll-region],
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-base-item,
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-doc-item {
  transition: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] button.runtime-knowledge-base-item.runtime-knowledge-base-item[data-active="true"]:is(:hover, :focus, :focus-visible, :active) {
  background: rgba(15, 23, 42, 0.06) !important;
  background-color: rgba(15, 23, 42, 0.06) !important;
  box-shadow: var(--runtime-shadow-active-ring) !important;
  transform: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] button.runtime-knowledge-base-item.runtime-knowledge-base-item[data-active="true"]:is(:hover, :focus, :focus-visible, :active) {
  background: rgba(255, 255, 255, 0.1) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-base-row.runtime-knowledge-base-row:is(:hover, :focus-within) {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-base-row.runtime-knowledge-base-row:is(:active, :focus),
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-base-row.runtime-knowledge-base-row[data-active="true"]:is(:hover, :active, :focus-within) {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-doc-item.runtime-knowledge-doc-item,
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-doc-item.runtime-knowledge-doc-item:is(:hover, :focus-within) {
  background: rgba(255, 255, 255, 0.46) !important;
  background-color: rgba(255, 255, 255, 0.46) !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-doc-item.runtime-knowledge-doc-item,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-doc-item.runtime-knowledge-doc-item:is(:hover, :focus-within) {
  background: rgba(255, 255, 255, 0.05) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-doc-item.runtime-knowledge-doc-item:is(:active, :focus-within) {
  background: rgba(255, 255, 255, 0.46) !important;
  background-color: rgba(255, 255, 255, 0.46) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-doc-item.runtime-knowledge-doc-item:is(:active, :focus-within) {
  background: rgba(255, 255, 255, 0.05) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
}

/* -------------------
 * 74. Knowledge Base Fixed Hover Surface
 * ------------------- */

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-sidebar,
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-sidebar:is(:hover, :active, :focus-within),
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-main,
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-main:is(:hover, :active, :focus-within),
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-card,
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-card:is(:hover, :active, :focus-within),
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-card-body,
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-card-body:is(:hover, :active, :focus-within),
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] [data-runtime-knowledge-base-scroll-region],
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] [data-runtime-knowledge-base-scroll-region]:is(:hover, :active, :focus-within) {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-base-row,
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-base-row:is(:hover, :active, :focus, :focus-within),
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] button.runtime-knowledge-base-item.runtime-knowledge-base-item:not([data-active="true"]),
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] button.runtime-knowledge-base-item.runtime-knowledge-base-item:not([data-active="true"]):is(:hover, :active, :focus, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-doc-item.runtime-knowledge-doc-item,
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-doc-item.runtime-knowledge-doc-item:is(:hover, :active, :focus, :focus-within) {
  background: rgba(255, 255, 255, 0.46) !important;
  background-color: rgba(255, 255, 255, 0.46) !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-doc-item.runtime-knowledge-doc-item,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-doc-item.runtime-knowledge-doc-item:is(:hover, :active, :focus, :focus-within) {
  background: rgba(255, 255, 255, 0.05) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
}

/* -------------------
 * 75. Knowledge Base Search And Batch Polish
 * ------------------- */

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] :is(
  .runtime-knowledge-search,
  .runtime-knowledge-load-more,
  .runtime-knowledge-search-summary,
  .runtime-knowledge-upload-hint,
  .runtime-knowledge-notice,
  .runtime-knowledge-loading
) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-upload-hint {
  padding: 0 2px 5px !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: var(--runtime-color-text-tertiary, rgba(5, 5, 5, 0.46)) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-search-summary {
  padding: 0 2px 4px !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: var(--runtime-color-text-tertiary, rgba(5, 5, 5, 0.46)) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-upload-hint {
  color: var(--runtime-color-text-tertiary, rgba(255, 255, 255, 0.45)) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] .runtime-knowledge-search-summary {
  color: var(--runtime-color-text-tertiary, rgba(255, 255, 255, 0.45)) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] input.runtime-knowledge-search-input.runtime-knowledge-search-input {
  border: 0 !important;
  outline: 0 !important;
  background: rgba(255, 255, 255, 0.52) !important;
  background-color: rgba(255, 255, 255, 0.52) !important;
  box-shadow: var(--runtime-shadow-subtle) !important;
  transform: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] input.runtime-knowledge-search-input.runtime-knowledge-search-input {
  background: rgba(255, 255, 255, 0.06) !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] button.runtime-knowledge-icon-btn.runtime-knowledge-icon-btn,
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] button.runtime-knowledge-icon-btn.runtime-knowledge-icon-btn:is(:hover, :active, :focus, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-doc-item.runtime-knowledge-doc-item[data-selected="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-doc-item.runtime-knowledge-doc-item[data-selected="true"]:is(:hover, :active, :focus, :focus-within) {
  box-shadow: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] button.runtime-knowledge-action-btn.runtime-knowledge-action-btn,
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] button.runtime-knowledge-action-btn.runtime-knowledge-action-btn:is(:hover, :active, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-doc-item.runtime-knowledge-doc-item,
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-doc-item.runtime-knowledge-doc-item:is(:hover, :active, :focus, :focus-within) {
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] button.runtime-knowledge-action-btn.runtime-knowledge-action-btn:not([data-runtime-knowledge-base-action="save"]):is(:hover, :active, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] button.runtime-knowledge-doc-action-btn.runtime-knowledge-doc-action-btn:is(:hover, :active, :focus, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

/* -------------------
 * 76. Composer More Tools Minimal Menu
 * ------------------- */

html body[data-runtime-shell-ready="true"] [data-runtime-plugin-tool-entry-menu="true"] {
  gap: 2px !important;
  padding: 8px !important;
  border: 0 !important;
  border-radius: 18px !important;
  box-shadow: var(--runtime-shadow-unified) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-plugin-tool-entry-menu="true"] [data-runtime-plugin-tool-entry-item="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-plugin-tool-entry-menu="true"] [data-runtime-plugin-tool-entry-item="true"]:not(:hover):not(:active):not(:focus):not(:focus-visible):not([aria-pressed="true"]) {
  min-height: 44px !important;
  padding: 8px 10px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-plugin-tool-entry-menu="true"] [data-runtime-plugin-tool-entry-item="true"]:is(:hover, :active, :focus, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
  opacity: 1 !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-plugin-tool-entry-menu="true"] [data-runtime-plugin-tool-entry-item="true"]:is(:hover, :active, :focus, :focus-visible) {
  background: var(--runtime-open-menu-hover-bg, rgba(255, 255, 255, 0.075)) !important;
  background-color: var(--runtime-open-menu-hover-bg, rgba(255, 255, 255, 0.075)) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-plugin-tool-entry-menu="true"] [data-runtime-plugin-tool-entry-item="true"][aria-pressed="true"] {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-plugin-tool-entry-menu="true"] [data-runtime-plugin-tool-entry-item="true"][aria-pressed="true"] {
  background: var(--runtime-open-menu-active-bg, rgba(255, 255, 255, 0.105)) !important;
  background-color: var(--runtime-open-menu-active-bg, rgba(255, 255, 255, 0.105)) !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-plugin-tool-entry-menu="true"] [data-runtime-plugin-tool-entry-item-icon="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-plugin-tool-entry-menu="true"] [data-runtime-plugin-tool-entry-empty="true"] {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* -------------------
 * 77. Mermaid Quick Preset Chips
 * ------------------- */

body[data-runtime-shell-ready="true"] footer .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2,
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 {
  gap: 4px !important;
  margin: 2px 0 10px 8px !important;
  padding: 12px 2px !important;
  min-height: 56px !important;
  height: auto !important;
  align-items: center !important;
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  scrollbar-width: none !important;
}

body[data-runtime-shell-ready="true"] footer .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2::-webkit-scrollbar,
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2::-webkit-scrollbar {
  display: none !important;
}

body[data-runtime-shell-ready="true"] footer .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap,
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  flex: 0 0 auto !important;
  height: 32px !important;
  min-height: 32px !important;
  padding: 0 10px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--runtime-fill-chip) !important;
  background-color: var(--runtime-fill-chip) !important;
  background-image: none !important;
  color: var(--runtime-color-text-primary) !important;
  box-shadow:
    inset 0 0 0 2px rgba(15, 23, 42, 0.056),
    0 0 12px rgba(15, 23, 42, 0.028) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  transform: none !important;
  transition: none !important;
}

body[data-runtime-shell-ready="true"] footer .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:hover,
body[data-runtime-shell-ready="true"] footer .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:focus,
body[data-runtime-shell-ready="true"] footer .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:focus-visible,
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:hover,
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:focus,
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:focus-visible {
  background: var(--runtime-fill-chip-hover) !important;
  background-color: var(--runtime-fill-chip-hover) !important;
  color: var(--runtime-color-text-primary) !important;
  box-shadow:
    inset 0 0 0 2px rgba(15, 23, 42, 0.105),
    0 0 18px rgba(15, 23, 42, 0.06) !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] footer .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:active,
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:active {
  background: var(--runtime-fill-chip-hover) !important;
  background-color: var(--runtime-fill-chip-hover) !important;
  color: var(--runtime-color-text-primary) !important;
  box-shadow:
    inset 0 0 0 2px rgba(15, 23, 42, 0.12),
    0 0 20px rgba(15, 23, 42, 0.07) !important;
  transform: none !important;
}

html.dark body[data-runtime-shell-ready="true"] footer .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap {
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.07),
    0 0 12px rgba(0, 0, 0, 0.32) !important;
}

html.dark body[data-runtime-shell-ready="true"] footer .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:hover,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:hover,
html.dark body[data-runtime-shell-ready="true"] footer .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:focus,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:focus,
html.dark body[data-runtime-shell-ready="true"] footer .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:focus-visible,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:focus-visible {
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.12),
    0 0 18px rgba(0, 0, 0, 0.4) !important;
}

html.dark body[data-runtime-shell-ready="true"] footer .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:active,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:active {
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.135),
    0 0 20px rgba(0, 0, 0, 0.46) !important;
}

body[data-runtime-shell-ready="true"] footer .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:last-child,
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:last-child {
  width: 32px !important;
  min-width: 32px !important;
  padding: 0 !important;
}

body[data-runtime-shell-ready="true"] footer .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:last-child > span,
body[data-runtime-shell-ready="true"] footer .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:last-child > span > svg,
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:last-child > span,
body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:last-child > span > svg {
  width: 16px !important;
  height: 16px !important;
}

html body div.flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2:has(> button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap) {
  position: relative !important;
  z-index: 2 !important;
  padding: 14px 4px !important;
  min-height: 60px !important;
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  contain: none !important;
  clip-path: none !important;
}

html body div.flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2:has(> button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap) > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap {
  box-shadow:
    0 0 0 2px rgba(15, 23, 42, 0.052),
    0 -3px 12px rgba(15, 23, 42, 0.048),
    0 4px 14px rgba(15, 23, 42, 0.078),
    0 0 16px rgba(15, 23, 42, 0.032) !important;
}

html body div.flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2:has(> button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap) > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:is(:hover, :focus, :focus-visible) {
  box-shadow:
    0 0 0 2px rgba(15, 23, 42, 0.064),
    0 -3px 13px rgba(15, 23, 42, 0.056),
    0 5px 16px rgba(15, 23, 42, 0.09),
    0 0 18px rgba(15, 23, 42, 0.038) !important;
}

html body div.flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2:has(> button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap) > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:active {
  box-shadow:
    0 0 0 2px rgba(15, 23, 42, 0.068),
    0 -2px 10px rgba(15, 23, 42, 0.05),
    0 3px 12px rgba(15, 23, 42, 0.084),
    0 0 16px rgba(15, 23, 42, 0.034) !important;
}

html.dark body div.flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2:has(> button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap) > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap {
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.064),
    0 -3px 12px rgba(0, 0, 0, 0.36),
    0 4px 14px rgba(0, 0, 0, 0.42),
    0 0 16px rgba(255, 255, 255, 0.026) !important;
}

html body [data-runtime-composer-preset-row="true"] {
  position: relative !important;
  z-index: 3 !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 4px !important;
  min-height: 34px !important;
  height: auto !important;
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  contain: none !important;
  clip-path: none !important;
  scrollbar-width: none !important;
}

html body [data-runtime-composer-preset-row="true"]::-webkit-scrollbar {
  display: none !important;
}

html body [data-runtime-composer-preset-row="true"] > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  margin: 0 !important;
  border: 1px solid rgba(15, 23, 42, 0.07) !important;
  border-radius: 999px !important;
  outline: 0 !important;
  background: rgba(255, 255, 255, 0.66) !important;
  background-color: rgba(255, 255, 255, 0.66) !important;
  background-image: none !important;
  color: var(--runtime-composer-polish-control-color-active, var(--runtime-color-text-primary)) !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  transform: none !important;
  transition: none !important;
}

html body [data-runtime-composer-preset-row="true"] > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:is(:hover, :focus, :focus-visible) {
  border-color: rgba(15, 23, 42, 0.1) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  background-color: rgba(255, 255, 255, 0.86) !important;
  background-image: none !important;
  color: var(--runtime-composer-polish-control-color-active, var(--runtime-color-text-primary)) !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  transition: none !important;
}

html body [data-runtime-composer-preset-row="true"] > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:active {
  border-color: rgba(15, 23, 42, 0.11) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  background-color: rgba(255, 255, 255, 0.92) !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  transition: none !important;
}

html.dark body [data-runtime-composer-preset-row="true"] > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap {
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(16, 16, 16, 0.58) !important;
  background-color: rgba(16, 16, 16, 0.58) !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
}

html body [data-runtime-composer-preset-row="true"] > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:last-child {
  width: 34px !important;
  min-width: 34px !important;
  padding: 0 !important;
}

html body footer .flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2:has(> button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap) {
  position: relative !important;
  z-index: 3 !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 4px !important;
  min-height: 34px !important;
  height: auto !important;
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  contain: none !important;
  clip-path: none !important;
  scrollbar-width: none !important;
}

html body footer .flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2:has(> button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap) > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  margin: 0 !important;
  border: 1px solid rgba(15, 23, 42, 0.07) !important;
  border-radius: 999px !important;
  outline: 0 !important;
  background: rgba(255, 255, 255, 0.66) !important;
  background-color: rgba(255, 255, 255, 0.66) !important;
  background-image: none !important;
  color: var(--runtime-composer-polish-control-color-active, var(--runtime-color-text-primary)) !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  transform: none !important;
  transition: none !important;
}

html body footer .flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2:has(> button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap) > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:is(:hover, :focus, :focus-visible) {
  border-color: rgba(15, 23, 42, 0.1) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  background-color: rgba(255, 255, 255, 0.86) !important;
  background-image: none !important;
  color: var(--runtime-composer-polish-control-color-active, var(--runtime-color-text-primary)) !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  transition: none !important;
}

html body footer .flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2:has(> button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap) > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:active {
  border-color: rgba(15, 23, 42, 0.11) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  background-color: rgba(255, 255, 255, 0.92) !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  transition: none !important;
}

html.dark body footer .flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2:has(> button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap) > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap {
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(16, 16, 16, 0.58) !important;
  background-color: rgba(16, 16, 16, 0.58) !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
}

html body footer .flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2:has(> button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap) > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:last-child {
  width: 34px !important;
  min-width: 34px !important;
  padding: 0 !important;
}

body[data-runtime-shell-ready="true"] footer .flex.justify-between.items-end.w-full.bg-transparent:has(> [data-runtime-composer-preset-row="true"]):has(> .menu-container.bg-transparent) {
  align-items: center !important;
  gap: 10px !important;
  min-height: 38px !important;
  height: auto !important;
  margin: 0 0 5px !important;
  padding: 0 10px !important;
  overflow: visible !important;
}

body[data-runtime-shell-ready="true"] footer .flex.justify-between.items-end.w-full.bg-transparent:has(> .flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap):has(> .menu-container.bg-transparent) {
  align-items: center !important;
  gap: 10px !important;
  min-height: 38px !important;
  height: auto !important;
  margin: 0 0 5px !important;
  padding: 0 10px !important;
  overflow: visible !important;
}

body[data-runtime-shell-ready="true"] footer .flex.justify-between.items-end.w-full.bg-transparent:has(> [data-runtime-composer-preset-row="true"]):has(> .menu-container.bg-transparent) > .flex-1.bg-transparent {
  min-width: 12px !important;
}

body[data-runtime-shell-ready="true"] footer .flex.justify-between.items-end.w-full.bg-transparent:has(> .flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2 > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap):has(> .menu-container.bg-transparent) > .flex-1.bg-transparent {
  min-width: 12px !important;
}

body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  width: auto !important;
  min-width: 0 !important;
  height: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent::before {
  content: "" !important;
  display: block !important;
  flex: 0 0 1px !important;
  width: 1px !important;
  height: 18px !important;
  margin: 0 1px 0 0 !important;
  border-radius: 999px !important;
  background: rgba(15, 23, 42, 0.1) !important;
}

html.dark body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent::before {
  background: rgba(255, 255, 255, 0.12) !important;
}

body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 {
  position: relative !important;
  z-index: 3 !important;
  display: inline-flex !important;
  align-items: flex-end !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 34px !important;
  height: auto !important;
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  contain: none !important;
  clip-path: none !important;
}

body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > div.cursor-pointer[role="button"] {
  display: inline-flex !important;
  align-items: stretch !important;
  justify-content: center !important;
  width: auto !important;
  height: 34px !important;
  min-height: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  outline: 0 !important;
  transition: none !important;
}

body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > div.cursor-pointer[role="button"] > .btn.btn-secondary.btn-md.inline-flex.w-full.justify-center.whitespace-nowrap.cursor-pointer {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  margin: 0 !important;
  border: 1px solid rgba(15, 23, 42, 0.07) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.66) !important;
  background-color: rgba(255, 255, 255, 0.66) !important;
  background-image: none !important;
  color: var(--runtime-composer-polish-control-color-active, var(--runtime-color-text-primary)) !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  transform: none !important;
  transition: none !important;
}

body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > div.cursor-pointer[role="button"] > .btn.btn-secondary.btn-md.inline-flex.w-full.justify-center.whitespace-nowrap.cursor-pointer:is(:hover, :focus, :focus-visible) {
  border-color: rgba(15, 23, 42, 0.1) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  background-color: rgba(255, 255, 255, 0.86) !important;
  background-image: none !important;
  color: var(--runtime-composer-polish-control-color-active, var(--runtime-color-text-primary)) !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  transition: none !important;
}

body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > div.cursor-pointer[role="button"] > .btn.btn-secondary.btn-md.inline-flex.w-full.justify-center.whitespace-nowrap.cursor-pointer:active {
  border-color: rgba(15, 23, 42, 0.11) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  background-color: rgba(255, 255, 255, 0.92) !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  transition: none !important;
}

html.dark body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > div.cursor-pointer[role="button"] > .btn.btn-secondary.btn-md.inline-flex.w-full.justify-center.whitespace-nowrap.cursor-pointer {
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(16, 16, 16, 0.58) !important;
  background-color: rgba(16, 16, 16, 0.58) !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
}

body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned {
  width: 158px !important;
  min-width: 158px !important;
  max-width: 158px !important;
  max-height: 240px !important;
  margin: 0 0 8px !important;
  padding: 8px !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  background-color: rgba(255, 255, 255, 0.94) !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  scrollbar-width: thin !important;
}

body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned > div {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 4px !important;
}

body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned .menu-item.menu-item-md {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 32px !important;
  height: 32px !important;
  padding: 0 8px !important;
  margin: 0 !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  border-radius: 12px !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: var(--runtime-color-text-primary, #1f2937) !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  transform: none !important;
  transition: none !important;
}

body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned .menu-item.menu-item-md:is(:hover, :focus, :focus-visible, :active) {
  border-color: rgba(15, 23, 42, 0.1) !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: var(--runtime-composer-polish-control-color-active, var(--runtime-color-text-primary)) !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned .menu-item.menu-item-md[aria-pressed="true"],
body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned .menu-item.menu-item-md[aria-selected="true"],
body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned .menu-item.menu-item-md.is-active,
body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned .menu-item.menu-item-md.active,
body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned .menu-item.menu-item-md.selected {
  border-color: rgba(37, 99, 235, 0.16) !important;
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-composer-polish-control-color-active, #2563eb) !important;
}

html.dark body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(17, 17, 17, 0.9) !important;
  background-color: rgba(17, 17, 17, 0.9) !important;
}

html.dark body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned .menu-item.menu-item-md {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(243, 244, 246, 0.96) !important;
}

html.dark body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned .menu-item.menu-item-md:is(:hover, :focus, :focus-visible, :active) {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(255, 255, 255, 0.98) !important;
}

html.dark body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned .menu-item.menu-item-md[aria-pressed="true"],
html.dark body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned .menu-item.menu-item-md[aria-selected="true"],
html.dark body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned .menu-item.menu-item-md.is-active,
html.dark body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned .menu-item.menu-item-md.active,
html.dark body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > .menu-items.custom-scrollbar.menu-items-top.menu-items-right-aligned .menu-item.menu-item-md.selected {
  border-color: rgba(96, 165, 250, 0.2) !important;
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(255, 255, 255, 0.98) !important;
}

html body div.flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2[data-runtime-composer-preset-row="true"] > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap,
html body div.flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2[data-runtime-composer-preset-row="true"] > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:is(:hover, :focus, :focus-visible, :active),
html.dark body div.flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2[data-runtime-composer-preset-row="true"] > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap {
  outline: 0 !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  transition: none !important;
}

/* -------------------
 * 79. Composer Tool Activation Flash Guard
 * ------------------- */

html body[data-runtime-shell-ready="true"] footer :is(
  .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2,
  .flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2,
  [data-runtime-composer-preset-row="true"]
):has(> button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap) {
  position: relative !important;
  z-index: 3 !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 4px !important;
  min-height: 34px !important;
  height: auto !important;
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  contain: none !important;
  clip-path: none !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

html body[data-runtime-shell-ready="true"] footer :is(
  .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2,
  .flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2,
  [data-runtime-composer-preset-row="true"]
):has(> button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap) > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap,
html body[data-runtime-shell-ready="true"] footer :is(
  .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2,
  .flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2,
  [data-runtime-composer-preset-row="true"]
):has(> button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap) > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:is(:hover, :active, :focus, :focus-visible),
html.dark body[data-runtime-shell-ready="true"] footer :is(
  .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2,
  .flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2,
  [data-runtime-composer-preset-row="true"]
):has(> button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap) > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap,
html.dark body[data-runtime-shell-ready="true"] footer :is(
  .flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2,
  .flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2,
  [data-runtime-composer-preset-row="true"]
):has(> button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap) > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap:is(:hover, :active, :focus, :focus-visible) {
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

html body[data-runtime-shell-ready="true"] footer .flex.justify-between.items-end.w-full.bg-transparent:has(> :is(.flex.flex-nowrap.scrollbar-hide.ml-2.overflow-x-auto.mt-1.mb-2, .flex.flex-nowrap.scrollbar-hide.ml-2.mt-1.mb-2, [data-runtime-composer-preset-row="true"]) > button.btn.btn-secondary.btn-md.mx-1.whitespace-nowrap),
html body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent,
html body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2,
html body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > div.cursor-pointer[role="button"],
html body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent > .menu.relative.relative.inline-block.text-left.group.mr-3.mt-1.mb-2 > div.cursor-pointer[role="button"] > .btn.btn-secondary.btn-md.inline-flex.w-full.justify-center.whitespace-nowrap.cursor-pointer {
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* -------------------
 * 80. Composer Context State Strip
 * ------------------- */

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-bar="true"] {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  width: auto !important;
  max-width: calc(100% - 20px) !important;
  margin: 0 10px 5px !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-private-chat-notice="true"] + [data-runtime-composer-state-bar="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-bar="true"]:has([data-runtime-composer-state-kind="private"]) {
  margin-top: -2px !important;
  margin-bottom: 4px !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-chip="true"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 2px !important;
  min-width: 0 !important;
  max-width: min(100%, 260px) !important;
  min-height: 24px !important;
  padding: 0 8px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(17, 24, 39, 0.055) !important;
  background-color: rgba(17, 24, 39, 0.055) !important;
  background-image: none !important;
  color: rgba(17, 24, 39, 0.72) !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  animation: none !important;
  transition: color 0.16s ease, background-color 0.16s ease !important;
  font-size: 12px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-chip="true"] {
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: rgba(245, 245, 245, 0.72) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-chip="true"][data-runtime-composer-state-kind="tool"],
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-chip="true"][data-runtime-composer-state-kind="knowledge"] {
  color: var(--runtime-color-text-primary, #111111) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-chip="true"][data-runtime-composer-state-kind="limit"] {
  color: rgba(180, 83, 9, 0.95) !important;
  background: rgba(251, 191, 36, 0.12) !important;
  background-color: rgba(251, 191, 36, 0.12) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-chip="true"][data-runtime-composer-state-kind="limit"] {
  color: rgba(251, 191, 36, 0.92) !important;
  background: rgba(251, 191, 36, 0.12) !important;
  background-color: rgba(251, 191, 36, 0.12) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-chip="true"][data-runtime-composer-state-kind="uploading"] {
  color: rgba(180, 83, 9, 0.95) !important;
  background: rgba(251, 191, 36, 0.12) !important;
  background-color: rgba(251, 191, 36, 0.12) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-chip="true"][data-runtime-composer-state-kind="private"] {
  min-height: 20px !important;
  padding: 0 7px !important;
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-color-text-tertiary, rgba(17, 24, 39, 0.46)) !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-chip="true"][data-runtime-composer-state-kind="private"] {
  color: var(--runtime-color-text-tertiary, rgba(245, 245, 245, 0.46)) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-chip="true"][data-runtime-composer-state-kind="uploading"] {
  color: rgba(251, 191, 36, 0.92) !important;
  background: rgba(251, 191, 36, 0.12) !important;
  background-color: rgba(251, 191, 36, 0.12) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-chip="true"] .runtime-composer-state-label {
  flex: 0 0 auto !important;
  color: var(--runtime-color-text-tertiary, rgba(17, 24, 39, 0.48)) !important;
  font-weight: 500 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-chip="true"] .runtime-composer-state-value {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-weight: 600 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-chip="true"] [data-runtime-composer-state-remove] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 16px !important;
  min-width: 16px !important;
  height: 16px !important;
  min-height: 16px !important;
  margin: 0 -3px 0 3px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: currentColor !important;
  box-shadow: none !important;
  opacity: 0.56 !important;
  transform: none !important;
  transition: opacity 0.16s ease !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-chip="true"] [data-runtime-composer-state-remove]:is(:hover, :focus, :focus-visible, :active) {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  opacity: 0.9 !important;
  transform: none !important;
}

@media (max-width: 768px) {
  html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-bar="true"] {
    flex-wrap: nowrap !important;
    max-width: calc(100% - 16px) !important;
    margin: 0 8px 6px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important;
  }

  html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-bar="true"]::-webkit-scrollbar {
    display: none !important;
  }

  html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-state-chip="true"] {
    flex: 0 0 auto !important;
    max-width: 220px !important;
  }
}

/* -------------------
 * 81. Topbar Functional Polish
 * ------------------- */

:root {
  --runtime-topbar-height: 58px !important;
  --runtime-topbar-inline-padding: 16px !important;
  --runtime-topbar-action-size: 36px !important;
  --runtime-topbar-action-gap: 8px !important;
  --runtime-topbar-control-bg: #ffffff !important;
  --runtime-topbar-control-hover-bg: #f7f7f7 !important;
  --runtime-topbar-control-active-bg: #f1f1f1 !important;
  --runtime-topbar-control-color: rgba(17, 24, 39, 0.78) !important;
  --runtime-topbar-control-active-color: rgba(17, 24, 39, 0.96) !important;
}

html.dark {
  --runtime-topbar-control-bg: #111111 !important;
  --runtime-topbar-control-hover-bg: #191919 !important;
  --runtime-topbar-control-active-bg: #202020 !important;
  --runtime-topbar-control-color: rgba(245, 245, 245, 0.74) !important;
  --runtime-topbar-control-active-color: rgba(245, 245, 245, 0.96) !important;
}

html[data-runtime-active-theme="default"] body[data-runtime-shell-ready="true"] header.relative.z-30.flex-shrink-0 > .relative.flex.items-center.justify-center.min-w-0.h-full {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  padding: 0 var(--runtime-topbar-inline-padding) !important;
}

html[data-runtime-active-theme="default"] body[data-runtime-shell-ready="true"] header.relative.z-30.flex-shrink-0 > .relative.flex.items-center.justify-center.min-w-0.h-full > .flex.w-full.h-full.items-center {
  display: flex !important;
  align-items: center !important;
  justify-content: normal !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  gap: 14px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

html[data-runtime-active-theme="default"] body[data-runtime-shell-ready="true"] header.relative.z-30.flex-shrink-0 > .relative.flex.items-center.justify-center.min-w-0.h-full > .flex.w-full.h-full.items-center > :first-child {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] {
  height: var(--runtime-topbar-height) !important;
  min-height: var(--runtime-topbar-height) !important;
  max-height: var(--runtime-topbar-height) !important;
  z-index: 56 !important;
  border: 0 !important;
  outline: 0 !important;
  background: var(--runtime-surface-panel, #ffffff) !important;
  background-color: var(--runtime-surface-panel, #ffffff) !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html body[data-runtime-shell-ready="true"] header[data-runtime-page-header="true"][data-runtime-page-header="true"][data-runtime-page-header="true"],
html body[data-runtime-shell-ready="true"] header.relative.z-30.flex-shrink-0[data-runtime-page-header="true"][data-runtime-page-header="true"] {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] {
  background: #111111 !important;
  background-color: #111111 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"]::before,
html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"]::after,
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"]::before,
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"]::after {
  content: none !important;
  display: none !important;
  background: none !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-layout="true"] {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  height: 100% !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 0 var(--runtime-topbar-inline-padding) !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] header.relative.z-30.flex-shrink-0 > .relative.flex.items-center.justify-center.min-w-0.h-full {
  width: 100% !important;
  max-width: none !important;
  justify-content: space-between !important;
  padding: 0 var(--runtime-topbar-inline-padding) !important;
}

html body[data-runtime-shell-ready="true"] header.relative.z-30.flex-shrink-0 > .relative.flex.items-center.justify-center.min-w-0.h-full > .flex.w-full.h-full.items-center {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

html body[data-runtime-shell-ready="true"] header.relative.z-30.flex-shrink-0 > .relative.flex.items-center.justify-center.min-w-0.h-full > .flex.w-full.h-full.items-center > :first-child {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: min(480px, calc(100vw - 420px)) !important;
  position: relative !important;
  z-index: 2 !important;
  overflow: visible !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: var(--runtime-topbar-action-gap) !important;
  flex: 0 0 auto !important;
  height: var(--runtime-topbar-height) !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html body[data-runtime-shell-ready="true"] header.relative.z-30.flex-shrink-0 > .relative.flex.items-center.justify-center.min-w-0.h-full > .flex.w-full.h-full.items-center[data-runtime-header-actions="true"]:has(button[aria-label="选择模型"]),
html body[data-runtime-shell-ready="true"] header.relative.z-30.flex-shrink-0 > .relative.flex.items-center.justify-center.min-w-0.h-full > .flex.w-full.h-full.items-center[data-runtime-header-actions="true"]:has(button[aria-label="選擇模型"]),
html body[data-runtime-shell-ready="true"] header.relative.z-30.flex-shrink-0 > .relative.flex.items-center.justify-center.min-w-0.h-full > .flex.w-full.h-full.items-center[data-runtime-header-actions="true"]:has(button[aria-label="Select model"]) {
  justify-content: normal !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot="true"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot="true"] > :is(.cursor-pointer, .menu):has(button) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-header-action-slot="true"] > .cursor-pointer[data-runtime-header-action],
  [data-runtime-header-action-slot="true"] > .menu[data-runtime-header-action]
),
html body[data-runtime-shell-ready="true"] [data-runtime-private-chat-entry="true"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: var(--runtime-topbar-action-size) !important;
  min-height: var(--runtime-topbar-action-size) !important;
  height: var(--runtime-topbar-action-size) !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  outline: 0 !important;
  background: var(--runtime-topbar-control-bg) !important;
  background-color: var(--runtime-topbar-control-bg) !important;
  background-image: none !important;
  color: var(--runtime-topbar-control-color) !important;
  box-shadow: var(--runtime-shadow-subtle) !important;
  filter: none !important;
  transform: none !important;
  transition:
    background-color 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease,
    opacity 0.16s ease !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"] {
  justify-content: flex-start !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: 180px !important;
  padding: 0 14px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"] :is(span, div, p, strong, b) {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-header-action-slot="true"] > .cursor-pointer[data-runtime-header-action],
  [data-runtime-header-action-slot="true"] > .menu[data-runtime-header-action]
),
html body[data-runtime-shell-ready="true"] [data-runtime-private-chat-entry="true"] {
  width: var(--runtime-topbar-action-size) !important;
  padding: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-header-action-slot="true"] > .cursor-pointer[data-runtime-header-action],
  [data-runtime-header-action-slot="true"] > .menu[data-runtime-header-action]
) :is(svg, img),
html body[data-runtime-shell-ready="true"] [data-runtime-private-chat-entry="true"] :is(svg, img) {
  width: 17px !important;
  height: 17px !important;
  min-width: 17px !important;
  flex: 0 0 17px !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action="tools"] + .menu-items,
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action-slot="true"]:has([data-runtime-header-action="tools"]) .menu-items {
  width: min(340px, 76vw) !important;
  min-width: min(340px, 76vw) !important;
  max-width: min(340px, 76vw) !important;
  max-height: min(180px, 52vh) !important;
  overflow: visible !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action="tools"] + .menu-items > .grid,
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action-slot="true"]:has([data-runtime-header-action="tools"]) .menu-items > .grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-flow: row !important;
  gap: 10px !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 6px !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action="tools"] + .menu-items > .grid > *,
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action-slot="true"]:has([data-runtime-header-action="tools"]) .menu-items > .grid > * {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action="tools"] + .menu-items > .grid > * :is(.text-xs, [class*="text-xs"]),
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action-slot="true"]:has([data-runtime-header-action="tools"]) .menu-items > .grid > * :is(.text-xs, [class*="text-xs"]) {
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action]:hover,
  [role="button"][data-runtime-header-action]:hover,
  [data-runtime-header-action-slot="true"] > .cursor-pointer[data-runtime-header-action]:hover,
  [data-runtime-header-action-slot="true"] > .menu[data-runtime-header-action]:hover
),
html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"]:hover,
html body[data-runtime-shell-ready="true"] [data-runtime-private-chat-entry="true"]:hover {
  background: var(--runtime-topbar-control-hover-bg) !important;
  background-color: var(--runtime-topbar-control-hover-bg) !important;
  color: var(--runtime-topbar-control-active-color) !important;
  box-shadow: var(--runtime-shadow-hover-ring) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action]:active,
  button[data-runtime-header-action][aria-pressed="true"],
  button[data-runtime-header-action][data-active="true"],
  [role="button"][data-runtime-header-action]:active,
  [role="button"][data-runtime-header-action][aria-pressed="true"],
  [role="button"][data-runtime-header-action][data-active="true"],
  [data-runtime-header-action-slot="true"] > .cursor-pointer[data-runtime-header-action]:active,
  [data-runtime-header-action-slot="true"] > .menu[data-runtime-header-action]:active
),
html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"]:is(:active, [aria-expanded="true"], [data-open="true"]),
html body[data-runtime-shell-ready="true"] [data-runtime-private-chat-entry="true"][data-runtime-private-active="true"] {
  background: var(--runtime-topbar-control-active-bg) !important;
  background-color: var(--runtime-topbar-control-active-bg) !important;
  color: var(--runtime-topbar-control-active-color) !important;
  box-shadow: var(--runtime-shadow-active-ring) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action]:focus-visible,
  [role="button"][data-runtime-header-action]:focus-visible,
  [data-runtime-header-action-slot="true"] > .cursor-pointer[data-runtime-header-action]:focus-visible,
  [data-runtime-header-action-slot="true"] > .menu[data-runtime-header-action]:focus-visible
),
html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"]:focus-visible,
html body[data-runtime-shell-ready="true"] [data-runtime-private-chat-entry="true"]:focus-visible {
  box-shadow: var(--runtime-shadow-active-ring) !important;
}

body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) {
  z-index: 56 !important;
  border: 0 !important;
  outline: 0 !important;
  background: var(--runtime-surface-panel, #ffffff) !important;
  background-color: var(--runtime-surface-panel, #ffffff) !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html.dark body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) {
  background: #111111 !important;
  background-color: #111111 !important;
}

body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) > .relative.flex.items-center.justify-center.min-w-0.h-full {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 0 var(--runtime-topbar-inline-padding) !important;
}

body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) > .relative.flex.items-center.justify-center.min-w-0.h-full > .flex.justify-between.items-center.h-full.w-full {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  min-width: 0 !important;
  gap: 14px !important;
}

body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .flex-1.flex.items-center {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: min(480px, calc(100vw - 420px)) !important;
  position: relative !important;
  z-index: 2 !important;
  overflow: visible !important;
}

body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .flex-1.flex.items-center > .menu,
body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] > .menu {
  overflow: visible !important;
}

body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) button[aria-label="选择模型"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-width: 180px !important;
  max-width: 100% !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 14px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  background: var(--runtime-topbar-control-bg) !important;
  background-color: var(--runtime-topbar-control-bg) !important;
  color: var(--runtime-topbar-control-color) !important;
  box-shadow: var(--runtime-shadow-subtle) !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) button[aria-label="选择模型"]:hover {
  background: var(--runtime-topbar-control-hover-bg) !important;
  background-color: var(--runtime-topbar-control-hover-bg) !important;
  color: var(--runtime-topbar-control-active-color) !important;
  box-shadow: var(--runtime-shadow-hover-ring) !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) button[aria-label="选择模型"]:is(:active, [aria-expanded="true"], [data-open="true"]) {
  background: var(--runtime-topbar-control-active-bg) !important;
  background-color: var(--runtime-topbar-control-active-bg) !important;
  color: var(--runtime-topbar-control-active-color) !important;
  box-shadow: var(--runtime-shadow-active-ring) !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) button[aria-label="选择模型"]:focus-visible {
  box-shadow: var(--runtime-shadow-active-ring) !important;
}

@media (max-width: 768px) {
  :root {
    --runtime-topbar-height: 54px !important;
    --runtime-topbar-inline-padding: 10px !important;
    --runtime-topbar-action-size: 34px !important;
    --runtime-topbar-action-gap: 6px !important;
  }

  html body[data-runtime-shell-ready="true"] [data-runtime-header-layout="true"] {
    gap: 8px !important;
  }

  html body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] {
    max-width: none !important;
  }

  html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"] {
    min-width: 0 !important;
    padding: 0 12px !important;
  }

  body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) button[aria-label="选择模型"] {
    min-width: 0 !important;
    padding: 0 12px !important;
    max-width: 56vw !important;
  }
}

/* -------------------
 * 82. Topbar Model Text Button
 * ------------------- */

html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"],
body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) button[aria-label="选择模型"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  min-width: 0 !important;
  min-height: 32px !important;
  height: 32px !important;
  width: auto !important;
  max-width: min(46vw, 520px) !important;
  padding: 0 2px !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: rgba(17, 17, 17, 0.86) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

@keyframes runtimeHeaderModelChevronBreath {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(0) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(1px) scale(1.08);
  }
}

html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] [data-runtime-header-model-trigger="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] .cursor-pointer[role="button"]:has(> button[data-runtime-header-model-button="true"]),
body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .cursor-pointer[role="button"]:has(> button[aria-label="选择模型"]) {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"],
html.dark body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) button[aria-label="选择模型"] {
  color: rgba(245, 245, 245, 0.88) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] [data-runtime-header-model-trigger="true"]:is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"], [data-open="true"]),
html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] .cursor-pointer[role="button"]:has(> button[data-runtime-header-model-button="true"]):is(:hover, :active, :focus, :focus-visible),
body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .cursor-pointer[role="button"]:has(> button[aria-label="选择模型"]):is(:hover, :active, :focus, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"]:is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"], [data-open="true"]),
body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) button[aria-label="选择模型"]:is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"], [data-open="true"]) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: rgba(17, 17, 17, 0.96) !important;
  transform: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"]:is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"], [data-open="true"]),
html.dark body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) button[aria-label="选择模型"]:is(:hover, :active, :focus, :focus-visible, [aria-expanded="true"], [data-open="true"]) {
  color: rgba(245, 245, 245, 0.96) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"] [data-runtime-header-model-label="true"],
body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) button[aria-label="选择模型"] [data-runtime-header-model-label="true"] {
  display: block !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: min(38vw, 448px) !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  line-height: 32px !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"] [data-runtime-header-model-arrow="true"],
body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) button[aria-label="选择模型"] [data-runtime-header-model-arrow="true"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 10px !important;
  width: 10px !important;
  min-width: 10px !important;
  height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(17, 17, 17, 0.52) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transform-origin: center !important;
  animation: runtimeHeaderModelChevronBreath 1.8s ease-in-out infinite !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"] [data-runtime-header-model-arrow="true"],
html.dark body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) button[aria-label="选择模型"] [data-runtime-header-model-arrow="true"] {
  color: rgba(245, 245, 245, 0.58) !important;
}

@media (prefers-reduced-motion: reduce) {
  html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"] [data-runtime-header-model-arrow="true"],
  body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) button[aria-label="选择模型"] [data-runtime-header-model-arrow="true"] {
    animation: none !important;
    opacity: 0.72 !important;
    transform: none !important;
  }
}

html body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] button[data-runtime-header-model-button="true"] :is(.i-icon-right, [class*="i-icon-right"]),
body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) button[aria-label="选择模型"] :is(.i-icon-right, [class*="i-icon-right"]) {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* -------------------
 * 83. Topbar Model Dropdown
 * ------------------- */

body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items,
body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"],
body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items {
  min-width: 240px !important;
  max-width: min(360px, 78vw) !important;
  margin: 6px 0 0 !important;
  padding: 10px 12px !important;
  border: 1px solid rgba(15, 23, 42, 0.18) !important;
  border-radius: 14px !important;
  background: rgb(255, 255, 255) !important;
  background-color: rgb(255, 255, 255) !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  max-height: min(420px, 72vh) !important;
  overflow: auto !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: thin !important;
}

html.dark body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgb(32, 32, 32) !important;
  background-color: rgb(32, 32, 32) !important;
  color: rgba(245, 245, 245, 0.94) !important;
  max-height: min(420px, 72vh) !important;
  overflow: auto !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
}

body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items > div,
body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] > div,
body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items > div {
  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;
}

body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"]),
body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"]),
body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"]) {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  width: 100% !important;
  min-height: 50px !important;
  margin: 0 !important;
  padding: 8px 6px !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: var(--runtime-color-text-primary, #111827) !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  transform: none !important;
  transition: none !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  touch-action: manipulation !important;
}

body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"]) :is(button, [role="button"], .button, [class*="btn"]),
body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"]) :is(button, [role="button"], .button, [class*="btn"]),
body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"]) :is(button, [role="button"], .button, [class*="btn"]) {
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"]) > :is(.inline-flex, [class*="rounded-full"]):first-child,
body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"]) > :is(.inline-flex, [class*="rounded-full"]):first-child,
body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"]) > :is(.inline-flex, [class*="rounded-full"]):first-child {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"]):is(:hover, :focus, :focus-visible, :active),
body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"]):is(:hover, :focus, :focus-visible, :active),
body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"]):is(:hover, :focus, :focus-visible, :active) {
  background: var(--runtime-open-menu-hover-bg, rgba(15, 23, 42, 0.055)) !important;
  background-color: var(--runtime-open-menu-hover-bg, rgba(15, 23, 42, 0.055)) !important;
  background-image: none !important;
  color: rgba(17, 24, 39, 0.98) !important;
  border-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"])[aria-pressed="true"],
body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"])[aria-selected="true"],
body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"]).is-active,
body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"]).active,
body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"]).selected,
body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"])[aria-pressed="true"],
body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"])[aria-selected="true"],
body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"]).is-active,
body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"]).active,
body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"]).selected,
body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"])[aria-pressed="true"],
body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"])[aria-selected="true"],
body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"]).is-active,
body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"]).active,
body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"]).selected {
  background: var(--runtime-open-menu-active-bg, rgba(15, 23, 42, 0.078)) !important;
  background-color: var(--runtime-open-menu-active-bg, rgba(15, 23, 42, 0.078)) !important;
  background-image: none !important;
  color: rgba(37, 99, 235, 0.98) !important;
  border-color: transparent !important;
}

html.dark body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"]),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"]),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"]) {
  color: rgba(243, 244, 246, 0.94) !important;
}

html.dark body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"]):is(:hover, :focus, :focus-visible, :active),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"]):is(:hover, :focus, :focus-visible, :active),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"]):is(:hover, :focus, :focus-visible, :active) {
  background: var(--runtime-open-menu-hover-bg, rgba(255, 255, 255, 0.075)) !important;
  background-color: var(--runtime-open-menu-hover-bg, rgba(255, 255, 255, 0.075)) !important;
  background-image: none !important;
  color: rgba(255, 255, 255, 0.98) !important;
  border-color: transparent !important;
}

html.dark body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"])[aria-pressed="true"],
html.dark body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"])[aria-selected="true"],
html.dark body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"]).is-active,
html.dark body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"]).active,
html.dark body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"]).selected,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"])[aria-pressed="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"])[aria-selected="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"]).is-active,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"]).active,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"]).selected,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"])[aria-pressed="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"])[aria-selected="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"]).is-active,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"]).active,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"]).selected {
  background: var(--runtime-open-menu-active-bg, rgba(255, 255, 255, 0.105)) !important;
  background-color: var(--runtime-open-menu-active-bg, rgba(255, 255, 255, 0.105)) !important;
  background-image: none !important;
  color: rgba(255, 255, 255, 0.98) !important;
  border-color: transparent !important;
}

/* -------------------
 * 79. Topbar Icon-Only Actions
 * ------------------- */

:root {
  --runtime-topbar-icon-action-size: 36px !important;
  --runtime-topbar-icon-action-glyph: 18px !important;
  --runtime-topbar-icon-action-color: rgba(17, 24, 39, 0.7) !important;
  --runtime-topbar-icon-action-hover-color: rgba(17, 24, 39, 0.95) !important;
  --runtime-topbar-icon-action-active-color: rgba(37, 99, 235, 0.95) !important;
}

html.dark {
  --runtime-topbar-icon-action-color: rgba(245, 245, 245, 0.66) !important;
  --runtime-topbar-icon-action-hover-color: rgba(255, 255, 255, 0.95) !important;
  --runtime-topbar-icon-action-active-color: rgba(96, 165, 250, 0.96) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] {
  gap: 8px !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot="true"] > .menu,
html body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot="true"] > .menu > .cursor-pointer,
html body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot="true"] > .cursor-pointer {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-private-chat-entry="true"]
) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--runtime-topbar-icon-action-size) !important;
  min-width: var(--runtime-topbar-icon-action-size) !important;
  max-width: var(--runtime-topbar-icon-action-size) !important;
  height: var(--runtime-topbar-icon-action-size) !important;
  min-height: var(--runtime-topbar-icon-action-size) !important;
  max-height: var(--runtime-topbar-icon-action-size) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: var(--runtime-topbar-icon-action-color) !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  opacity: 1 !important;
  font-size: 0 !important;
  line-height: 1 !important;
  transition: color 0.16s ease, opacity 0.16s ease !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-private-chat-entry="true"]
):is(:hover, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: var(--runtime-topbar-icon-action-hover-color) !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-private-chat-entry="true"]
):is(:active, [aria-pressed="true"], [data-active="true"], [aria-expanded="true"], [data-runtime-private-active="true"]) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: var(--runtime-topbar-icon-action-active-color) !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-private-chat-entry="true"]
)[disabled],
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-private-chat-entry="true"]
)[aria-disabled="true"] {
  color: rgba(17, 24, 39, 0.38) !important;
  opacity: 1 !important;
  cursor: default !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-private-chat-entry="true"]
)[disabled],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-private-chat-entry="true"]
)[aria-disabled="true"] {
  color: rgba(245, 245, 245, 0.32) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-private-chat-entry="true"]
) :is(.i-icon, span[class*="i-icon"], span[aria-hidden="true"]),
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [role="button"][data-runtime-header-action] :is(.btn-icon, span[class*="btn-icon"]) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--runtime-topbar-icon-action-glyph) !important;
  min-width: var(--runtime-topbar-icon-action-glyph) !important;
  max-width: var(--runtime-topbar-icon-action-glyph) !important;
  height: var(--runtime-topbar-icon-action-glyph) !important;
  min-height: var(--runtime-topbar-icon-action-glyph) !important;
  max-height: var(--runtime-topbar-icon-action-glyph) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-private-chat-entry="true"]
) :is(svg, img) {
  display: block !important;
  width: var(--runtime-topbar-icon-action-glyph) !important;
  min-width: var(--runtime-topbar-icon-action-glyph) !important;
  max-width: var(--runtime-topbar-icon-action-glyph) !important;
  height: var(--runtime-topbar-icon-action-glyph) !important;
  min-height: var(--runtime-topbar-icon-action-glyph) !important;
  max-height: var(--runtime-topbar-icon-action-glyph) !important;
  margin: 0 !important;
  padding: 0 !important;
  color: currentColor !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-header-actions="true"][data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-header-action-slot="true"] > .cursor-pointer[data-runtime-header-action],
  [data-runtime-header-action-slot="true"] > .menu[data-runtime-header-action],
  [data-runtime-private-chat-entry="true"]
) {
  width: var(--runtime-topbar-icon-action-size) !important;
  min-width: var(--runtime-topbar-icon-action-size) !important;
  max-width: var(--runtime-topbar-icon-action-size) !important;
  height: var(--runtime-topbar-icon-action-size) !important;
  min-height: var(--runtime-topbar-icon-action-size) !important;
  max-height: var(--runtime-topbar-icon-action-size) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: var(--runtime-topbar-icon-action-color) !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-header-actions="true"][data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-header-action-slot="true"] > .cursor-pointer[data-runtime-header-action],
  [data-runtime-header-action-slot="true"] > .menu[data-runtime-header-action],
  [data-runtime-private-chat-entry="true"]
):is(:hover, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-topbar-icon-action-hover-color) !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-header-actions="true"][data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-header-action-slot="true"] > .cursor-pointer[data-runtime-header-action],
  [data-runtime-header-action-slot="true"] > .menu[data-runtime-header-action],
  [data-runtime-private-chat-entry="true"]
):is(:active, [aria-pressed="true"], [data-active="true"], [aria-expanded="true"], [data-runtime-private-active="true"]) {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-topbar-icon-action-active-color) !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-header-actions="true"][data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-private-chat-entry="true"]
) :is(.i-icon, .btn-icon, span[class*="i-icon"], span[class*="btn-icon"], span[aria-hidden="true"]) {
  width: var(--runtime-topbar-icon-action-glyph) !important;
  min-width: var(--runtime-topbar-icon-action-glyph) !important;
  max-width: var(--runtime-topbar-icon-action-glyph) !important;
  height: var(--runtime-topbar-icon-action-glyph) !important;
  min-height: var(--runtime-topbar-icon-action-glyph) !important;
  max-height: var(--runtime-topbar-icon-action-glyph) !important;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: inherit !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] :is(button, [role="button"]):has(img[alt="用户头像"]),
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] :is(button, [role="button"]):has(img[alt="用户头像"]):is(:hover, :active, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-sidebar-avatar-button="true"][data-runtime-sidebar-avatar-button="true"][role="button"][aria-label="设置"]:has(img[alt="用户头像"]),
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-sidebar-avatar-button="true"][data-runtime-sidebar-avatar-button="true"][role="button"][aria-label="设置"]:has(img[alt="用户头像"]):is(:hover, :active, :focus, :focus-visible) {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] :is(button, [role="button"]):has(img[alt="用户头像"]) .avatar,
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] :is(button, [role="button"]):has(img[alt="用户头像"]) .avatar:is(:hover, :active, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-sidebar-avatar-button="true"][data-runtime-sidebar-avatar-button="true"] [data-runtime-sidebar-avatar-inner="true"],
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-sidebar-avatar-button="true"][data-runtime-sidebar-avatar-button="true"] [data-runtime-sidebar-avatar-inner="true"]:is(:hover, :active, :focus, :focus-visible) {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] :is(button, [role="button"]) img[alt="用户头像"],
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-sidebar-avatar-button="true"][data-runtime-sidebar-avatar-button="true"] img[alt="用户头像"] {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border-radius: 999px !important;
}

/* -------------------
 * 75. Runtime Language Composer + Menu Stabilization
 * ------------------- */

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] textarea:not(#runtime-composer-input-polish-lock),
html body[data-runtime-shell-ready="true"] [data-runtime-composer-input-wrap="true"] textarea:not(#runtime-composer-input-polish-lock),
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] textarea:not(#runtime-composer-input-polish-lock):is(:hover, :focus, :focus-visible, :active),
html body[data-runtime-shell-ready="true"] [data-runtime-composer-input-wrap="true"] textarea:not(#runtime-composer-input-polish-lock):is(:hover, :focus, :focus-visible, :active),
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] textarea[role="textbox"]:not(#runtime-composer-input-polish-lock),
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] textarea[role="textbox"]:not(#runtime-composer-input-polish-lock):is(:hover, :focus, :focus-visible, :active) {
  border: 0 !important;
  border-color: transparent !important;
  outline: 0 !important;
  outline-offset: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  resize: none !important;
  transition-property: height, min-height, max-height, color, background-color, opacity !important;
  --tw-border-opacity: 0 !important;
  --tw-ring-color: transparent !important;
  --tw-ring-shadow: 0 0 #0000 !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-composer-card="true"],
  [data-runtime-composer-input-wrap="true"]
) textarea::placeholder {
  color: var(--runtime-color-text-tertiary, rgba(17, 24, 39, 0.42)) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  div:has(> textarea),
  div:has(textarea),
  [data-runtime-composer-input-wrap="true"]
),
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  div:has(> textarea),
  div:has(textarea),
  [data-runtime-composer-input-wrap="true"]
):is(:hover, :focus, :focus-visible, :focus-within, :active) {
  border: 0 !important;
  border-color: transparent !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  --tw-border-opacity: 0 !important;
  --tw-ring-color: transparent !important;
  --tw-ring-shadow: 0 0 #0000 !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  div:has(> textarea),
  div:has(textarea),
  textarea
)::before,
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] :is(
  div:has(> textarea),
  div:has(textarea),
  textarea
)::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  outline: 0 !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  [data-runtime-header-action="language"] + .menu-items,
  [data-runtime-header-action-slot="true"]:has([data-runtime-header-action="language"]) .menu-items
) {
  width: min(248px, 72vw) !important;
  min-width: min(248px, 72vw) !important;
  max-width: min(248px, 72vw) !important;
  min-height: 0 !important;
  max-height: min(420px, calc(100vh - 88px)) !important;
  padding: 8px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  transform-origin: top right !important;
  transform: none !important;
  transition: opacity 0.14s ease !important;
  contain: layout paint !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  [data-runtime-header-action="language"] + .menu-items,
  [data-runtime-header-action-slot="true"]:has([data-runtime-header-action="language"]) .menu-items
) > * {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

/* -------------------
 * 80. Topbar Action Parity Lock
 * ------------------- */

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] {
  gap: 8px !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action-slot="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action-slot="true"] > :is(.menu, .cursor-pointer),
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action-slot="true"] > .menu > .cursor-pointer {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-private-chat-entry="true"]
) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--runtime-topbar-icon-action-size) !important;
  min-width: var(--runtime-topbar-icon-action-size) !important;
  max-width: var(--runtime-topbar-icon-action-size) !important;
  height: var(--runtime-topbar-icon-action-size) !important;
  min-height: var(--runtime-topbar-icon-action-size) !important;
  max-height: var(--runtime-topbar-icon-action-size) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: var(--runtime-topbar-icon-action-color) !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  opacity: 1 !important;
  font-size: 0 !important;
  line-height: 1 !important;
  transition: color 0.16s ease, opacity 0.16s ease !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action],
  [role="button"][data-runtime-header-action],
  [data-runtime-private-chat-entry="true"]
) :is(.i-icon, .btn-icon, span[class*="i-icon"], span[class*="btn-icon"], span[aria-hidden="true"], svg, img) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--runtime-topbar-icon-action-glyph) !important;
  min-width: var(--runtime-topbar-icon-action-glyph) !important;
  max-width: var(--runtime-topbar-icon-action-glyph) !important;
  height: var(--runtime-topbar-icon-action-glyph) !important;
  min-height: var(--runtime-topbar-icon-action-glyph) !important;
  max-height: var(--runtime-topbar-icon-action-glyph) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: currentColor !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action]:hover,
  [role="button"][data-runtime-header-action]:hover,
  button[data-runtime-header-action]:focus-visible,
  [role="button"][data-runtime-header-action]:focus-visible,
  [data-runtime-private-chat-entry="true"]:hover,
  [data-runtime-private-chat-entry="true"]:focus-visible
) {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-topbar-icon-action-hover-color) !important;
  box-shadow: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  button[data-runtime-header-action]:active,
  button[data-runtime-header-action][aria-pressed="true"],
  button[data-runtime-header-action][aria-expanded="true"],
  button[data-runtime-header-action][data-active="true"],
  [role="button"][data-runtime-header-action]:active,
  [role="button"][data-runtime-header-action][aria-pressed="true"],
  [role="button"][data-runtime-header-action][aria-expanded="true"],
  [role="button"][data-runtime-header-action][data-active="true"],
  [data-runtime-private-chat-entry="true"][data-runtime-private-active="true"]
) {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-topbar-icon-action-active-color) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* -------------------
 * 76. Runtime Message Bubble Parity Lock
 * ------------------- */

html body[data-runtime-shell-ready="true"] #image-wrapper :is(
  .markdown-body.text-gray-950.dark\:text-gray-100:not(:empty),
  .markdown-body.markdown-body-generate:not(:empty),
  .p-3.rounded-2xl.text-base.bg-opacity.dark\:bg-gray-750.break-words.whitespace-pre-wrap.text-gray-950.dark\:text-gray-100
) {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  color: #111111 !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 15px !important;
  box-shadow: var(--runtime-shadow-selected) !important;
  padding: 12px 14px !important;
  margin: 4px !important;
}

html.dark body[data-runtime-shell-ready="true"] #image-wrapper :is(
  .markdown-body.text-gray-950.dark\:text-gray-100:not(:empty),
  .markdown-body.markdown-body-generate:not(:empty),
  .p-3.rounded-2xl.text-base.bg-opacity.dark\:bg-gray-750.break-words.whitespace-pre-wrap.text-gray-950.dark\:text-gray-100
) {
  background: #1d1d1d !important;
  background-color: #1d1d1d !important;
  background-image: none !important;
  color: #f3f3f3 !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 15px !important;
  box-shadow: var(--runtime-shadow-selected) !important;
  padding: 12px 14px !important;
  margin: 4px !important;
}

html body[data-runtime-shell-ready="true"] #image-wrapper .markdown-body:empty,
html.dark body[data-runtime-shell-ready="true"] #image-wrapper .markdown-body:empty {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  min-height: 0 !important;
}

/* -------------------
 * 81. Composer Persistent Tool Button Compact Lock
 * ------------------- */

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] {
  gap: 12px !important;
  column-gap: 12px !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  [role="button"][aria-label="启用或禁用工具功能"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-plugin-tool-entry-button="true"]
) {
  gap: 2px !important;
  column-gap: 2px !important;
  width: fit-content !important;
  min-width: 34px !important;
  max-width: fit-content !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* -------------------
 * 82. Unified Open Menu Interaction
 * ------------------- */

html body[data-runtime-shell-ready="true"] {
  --runtime-open-menu-hover-bg: rgba(15, 23, 42, 0.055);
  --runtime-open-menu-active-bg: rgba(15, 23, 42, 0.078);
}

html.dark body[data-runtime-shell-ready="true"] {
  --runtime-open-menu-hover-bg: rgba(255, 255, 255, 0.075);
  --runtime-open-menu-active-bg: rgba(255, 255, 255, 0.105);
}

html body[data-runtime-shell-ready="true"] :is(
  header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"]),
  [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"]),
  [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"]),
  [data-runtime-plugin-tool-entry-menu="true"] [data-runtime-plugin-tool-entry-item="true"]
) {
  border-radius: 10px !important;
  background-image: none !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  animation: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"]),
  [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"]),
  [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"]),
  [data-runtime-plugin-tool-entry-menu="true"] [data-runtime-plugin-tool-entry-item="true"]
):is(:hover, :focus, :focus-visible) {
  background: var(--runtime-open-menu-hover-bg) !important;
  background-color: var(--runtime-open-menu-hover-bg) !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
  filter: none !important;
  opacity: 1 !important;
  transition: none !important;
  animation: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  header:has(button[aria-label="选择模型"]) .menu-items :is(.menu-item, [role="menuitem"]),
  [data-runtime-header-model-menu="true"] :is(.menu-item, [role="menuitem"]),
  [data-runtime-header-model-group="true"] .menu-items :is(.menu-item, [role="menuitem"]),
  [data-runtime-plugin-tool-entry-menu="true"] [data-runtime-plugin-tool-entry-item="true"]
):is(:active, [aria-pressed="true"], [aria-selected="true"], .is-active, .active, .selected, .menu-item-active) {
  background: var(--runtime-open-menu-active-bg) !important;
  background-color: var(--runtime-open-menu-active-bg) !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
  filter: none !important;
  opacity: 1 !important;
  transition: none !important;
  animation: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [role="button"][aria-pressed="true"][aria-label],
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [role="button"][data-active="true"][aria-label],
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [role="button"][data-state="active"][aria-label] {
  box-shadow:
    0 0 0 2px rgba(15, 23, 42, 0.28),
    0 0 18px rgba(15, 23, 42, 0.08) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [role="button"][aria-pressed="true"][aria-label],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [role="button"][data-active="true"][aria-label],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [role="button"][data-state="active"][aria-label] {
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.3),
    0 0 18px rgba(255, 255, 255, 0.08) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-plugin-tool-entry-button="true"]
) {
  width: 98px !important;
  min-width: 98px !important;
  max-width: 98px !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] button[data-runtime-knowledge-base-entry-button="true"][data-runtime-knowledge-base-entry-button="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] button[data-runtime-plugin-tool-entry-button="true"][data-runtime-plugin-tool-entry-button="true"] {
  width: 98px !important;
  min-width: 98px !important;
  max-width: 98px !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [data-runtime-plugin-tool-entry-root="true"] {
  width: 98px !important;
  min-width: 98px !important;
  max-width: 98px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  [role="button"][aria-label="启用或禁用工具功能"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-plugin-tool-entry-button="true"]
) :is(
  .ml-1,
  [data-runtime-plugin-tool-entry-label="true"],
  span:not([data-runtime-knowledge-base-entry-icon="true"]):not([data-runtime-knowledge-base-entry-count="true"])
) {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [data-runtime-plugin-tool-entry-menu="true"] [data-runtime-plugin-tool-entry-item="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [data-runtime-plugin-tool-entry-menu="true"] [data-runtime-plugin-tool-entry-item="true"]:is(:hover, :active, :focus, :focus-visible, [aria-pressed="true"]) {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  min-height: 44px !important;
  height: auto !important;
  padding: 8px 10px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  align-self: stretch !important;
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
  transition: none !important;
  animation: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [data-runtime-plugin-tool-entry-menu="true"] [data-runtime-plugin-tool-entry-item="true"]:is(:hover, :focus, :focus-visible) {
  background: var(--runtime-open-menu-hover-bg) !important;
  background-color: var(--runtime-open-menu-hover-bg) !important;
  opacity: 1 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [data-runtime-plugin-tool-entry-menu="true"] [data-runtime-plugin-tool-entry-item="true"]:is(:active, [aria-pressed="true"]) {
  background: var(--runtime-open-menu-active-bg) !important;
  background-color: var(--runtime-open-menu-active-bg) !important;
  opacity: 1 !important;
}

/* -------------------
 * 83. Composer Shadow Depth Swap
 * ------------------- */

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  button,
  [role="button"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-plugin-tool-entry-button="true"],
  button.btn-pill,
  .btn-pill[role="button"]
),
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  button,
  [role="button"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-plugin-tool-entry-button="true"],
  button.btn-pill,
  .btn-pill[role="button"]
):is(:hover, :focus, :focus-visible) {
  box-shadow: var(--runtime-composer-polish-shadow) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  button,
  [role="button"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-plugin-tool-entry-button="true"],
  button.btn-pill,
  .btn-pill[role="button"]
):is(:active, [aria-pressed="true"], [aria-expanded="true"], [data-active="true"], [data-state="active"], .btn-pill-active, .active) {
  box-shadow:
    0 0 0 2px rgba(15, 23, 42, 0.22),
    0 0 22px rgba(15, 23, 42, 0.12) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  button,
  [role="button"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-plugin-tool-entry-button="true"],
  button.btn-pill,
  .btn-pill[role="button"]
):is(:active, [aria-pressed="true"], [aria-expanded="true"], [data-active="true"], [data-state="active"], .btn-pill-active, .active) {
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.26),
    0 0 22px rgba(255, 255, 255, 0.13) !important;
}

/* -------------------
 * 84. Dark Sidebar Canvas Swap
 * ------------------- */

html.dark {
  --runtime-canvas-bg: #202020 !important;
  --runtime-surface-base: #202020 !important;
  --runtime-surface-shell: #181818 !important;
  --runtime-surface-panel: #202020 !important;
  --runtime-surface-card: #2a2a2a !important;
  --runtime-surface-card-hover: #303030 !important;
  --runtime-surface-card-active: #383838 !important;
  --runtime-surface-menu: #202020 !important;
  --runtime-surface-composer: #202020 !important;
  --runtime-fill-toolbar: #2a2a2a !important;
  --runtime-fill-chip: #2a2a2a !important;
  --runtime-fill-chip-hover: #303030 !important;
  --runtime-composer-polish-surface: #202020 !important;
  --runtime-composer-polish-control: var(--runtime-composer-polish-surface) !important;
  --runtime-composer-polish-control-hover: var(--runtime-composer-polish-surface) !important;
  --runtime-composer-polish-control-active: var(--runtime-composer-polish-surface) !important;
  --runtime-composer-polish-control-selected: var(--runtime-composer-polish-surface) !important;
  --runtime-plugin-tool-entry-button-open-dark: var(--runtime-composer-polish-surface) !important;
  --sidebar-bg: #181818 !important;
}

html.dark body,
html.dark #app,
html.dark [data-runtime-main-frame="true"],
html.dark .n-layout,
html.dark .n-layout-content,
html.dark [data-runtime-page-header="true"],
html.dark .relative.overflow-hidden.h-full.flex.flex-col.transition-all.duration-300.ease-in-out.transform.w-full,
html.dark .flex-1.overflow-y-auto.custom-scrollbar,
html.dark .sticky.top-0.z-10.bg-white.dark\:bg-gray-800.pb-4,
html.dark body[data-runtime-shell-ready="true"],
html.dark body[data-runtime-shell-ready="true"] #app,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-main-frame="true"],
html.dark body[data-runtime-shell-ready="true"] .n-layout,
html.dark body[data-runtime-shell-ready="true"] .n-layout-content,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"],
html.dark body[data-runtime-shell-ready="true"] .relative.overflow-hidden.h-full.flex.flex-col.transition-all.duration-300.ease-in-out.transform.w-full,
html.dark body[data-runtime-shell-ready="true"] .flex-1.overflow-y-auto.custom-scrollbar,
html.dark body[data-runtime-shell-ready="true"] .sticky.top-0.z-10.bg-white.dark\:bg-gray-800.pb-4 {
  background: var(--runtime-canvas-bg) !important;
  background-color: var(--runtime-canvas-bg) !important;
  background-image: none !important;
}

html.dark :is(
  [data-runtime-sidebar-root="true"],
  [data-runtime-sidebar-main="true"],
  [data-runtime-sidebar-panel="true"],
  main.flex.flex-col.h-full.flex-1,
  .custom-scrollbar.px-4.overflow-y-auto.h-full:has(> .flex.flex-col.gap-3.text-sm)
) {
  background: var(--sidebar-bg) !important;
  background-color: var(--sidebar-bg) !important;
}

html.dark :is(
  [data-runtime-composer-card="true"],
  [data-runtime-composer-input-wrap="true"],
  footer:has(textarea[aria-label="聊天消息输入框"]),
  [role="contentinfo"]:has(textarea[aria-label="聊天消息输入框"])
) {
  background: var(--runtime-canvas-bg) !important;
  background-color: var(--runtime-canvas-bg) !important;
}

html.dark body [data-runtime-composer-card="true"][data-runtime-composer-card="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"][data-runtime-composer-card="true"],
html.dark body [data-runtime-composer-input-wrap="true"][data-runtime-composer-input-wrap="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-input-wrap="true"][data-runtime-composer-input-wrap="true"] {
  background: var(--runtime-canvas-bg) !important;
  background-color: var(--runtime-canvas-bg) !important;
  transition-property: box-shadow, color, opacity, transform !important;
}

html body [data-runtime-composer-card="true"][data-runtime-composer-card="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"][data-runtime-composer-card="true"],
html body [data-runtime-composer-input-wrap="true"][data-runtime-composer-input-wrap="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-composer-input-wrap="true"][data-runtime-composer-input-wrap="true"] {
  transition-property: box-shadow, color, opacity, transform !important;
}

html.dark body[data-runtime-shell-ready="true"] header[data-runtime-page-header="true"]:has(button[aria-label="选择模型"]),
html.dark body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"])[data-runtime-page-header="true"],
html.dark body[data-runtime-shell-ready="true"] .relative.z-30.flex-shrink-0.bg-white.dark\:bg-gray-800.backdrop-blur-sm[data-runtime-page-header="true"] {
  background: var(--runtime-canvas-bg) !important;
  background-color: var(--runtime-canvas-bg) !important;
  background-image: none !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  [role="menu"],
  .menu-items,
  [data-runtime-header-model-menu="true"],
  [data-runtime-plugin-tool-entry-menu="true"],
  [data-runtime-knowledge-base-dialog="true"],
  [data-runtime-history-search-dialog="true"],
  [data-runtime-project-manager-dialog="true"],
  .runtime-project-manager-modal-panel,
  .runtime-project-manager-target-menu,
  [data-runtime-conversation-action-menu="true"],
  .n-popover,
  .n-dropdown-menu,
  .n-base-select-menu,
  .n-select-menu,
  .n-modal,
  .n-dialog,
  .n-card
),
html.dark body[data-runtime-shell-ready="true"] :is(
  [role="dialog"] > div,
  .fixed.inset-0.z-\[55\] > div,
  .fixed.inset-0.z-\[60\] > div,
  .fixed.inset-0.z-\[70\] > div
) {
  background: var(--runtime-canvas-bg) !important;
  background-color: var(--runtime-canvas-bg) !important;
  background-image: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-page-header="true"] .menu-items[role="menu"],
html.dark body[data-runtime-shell-ready="true"] header[data-runtime-page-header="true"] .menu-items[role="menu"],
html.dark body[data-runtime-shell-ready="true"] header:has(button[aria-label="选择模型"]) .menu-items[role="menu"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] .menu-items[role="menu"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-header-action-slot="true"] .menu-items[role="menu"] {
  background: var(--runtime-canvas-bg) !important;
  background-color: var(--runtime-canvas-bg) !important;
  background-image: none !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .ai-message .message-content,
  .ai-message .markdown-body:not(.message-content .markdown-body),
  .user-message .message-content,
  .user-message .rounded-2xl:not(.message-content .rounded-2xl),
  #image-wrapper .markdown-body.text-gray-950.dark\:text-gray-100:not(:empty),
  #image-wrapper .markdown-body.markdown-body-generate:not(:empty),
  #image-wrapper .p-3.rounded-2xl.text-base.bg-opacity.dark\:bg-gray-750.break-words.whitespace-pre-wrap.text-gray-950.dark\:text-gray-100
),
html.dark body[data-runtime-shell-ready="true"] #image-wrapper .flex.w-full.my-2.pb-3.items-start.flex-row :is(
  .markdown-body,
  .rounded-2xl.text-base.break-words.whitespace-pre-wrap
) {
  background: var(--runtime-chat-content-surface, var(--runtime-surface-panel, #202020)) !important;
  background-color: var(--runtime-chat-content-surface, var(--runtime-surface-panel, #202020)) !important;
  background-image: none !important;
}

html.dark body[data-runtime-shell-ready="true"] .user-message.user-message :is(
  .message-content.message-content,
  .rounded-2xl.rounded-2xl
),
html.dark body[data-runtime-shell-ready="true"] #image-wrapper .flex.w-full.my-2.pb-3.items-start.flex-row .rounded-2xl.text-base.break-words.whitespace-pre-wrap {
  background: var(--runtime-chat-content-surface, var(--runtime-surface-panel, #202020)) !important;
  background-color: var(--runtime-chat-content-surface, var(--runtime-surface-panel, #202020)) !important;
  background-image: none !important;
}

html.dark body[data-runtime-shell-ready="true"]:not(#runtime-dark-surface-brighten-a):not(#runtime-dark-surface-brighten-b) .user-message :is(
  .message-content,
  .rounded-2xl
) {
  background: var(--runtime-chat-content-surface, var(--runtime-surface-panel, #202020)) !important;
  background-color: var(--runtime-chat-content-surface, var(--runtime-surface-panel, #202020)) !important;
  background-image: none !important;
}

/* -------------------
 * 85. Dark Search Dialog Polish
 * ------------------- */

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-panel {
  width: min(424px, calc(100vw - 48px)) !important;
  padding: 18px 18px 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.075) !important;
  border-radius: 22px !important;
  background: #202020 !important;
  background-color: #202020 !important;
  background-image: none !important;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.028),
    0 18px 48px rgba(0, 0, 0, 0.28) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-header {
  margin: 0 0 12px !important;
  padding: 0 38px 0 0 !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-title {
  color: rgba(255, 255, 255, 0.94) !important;
  font-size: 15px !important;
  font-weight: 760 !important;
  letter-spacing: -0.012em !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-close {
  top: 12px !important;
  right: 12px !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  min-height: 30px !important;
  border: 0 !important;
  background: rgba(255, 255, 255, 0.055) !important;
  background-color: rgba(255, 255, 255, 0.055) !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 19px !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-close:is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, 0.095) !important;
  background-color: rgba(255, 255, 255, 0.095) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-form {
  margin: 0 !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-input-shell {
  min-height: 44px !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] input.runtime-history-search-dialog-input {
  min-height: 44px !important;
  padding: 0 78px 0 16px !important;
  border: 0 !important;
  border-radius: 18px !important;
  background: #2a2a2a !important;
  background-color: #2a2a2a !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 14px !important;
  font-weight: 560 !important;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.045) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] input.runtime-history-search-dialog-input::placeholder {
  color: rgba(255, 255, 255, 0.34) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] input.runtime-history-search-dialog-input:focus {
  background: #303030 !important;
  background-color: #303030 !important;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.105) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-submit,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-submit:is(:hover, :active, :focus, :focus-visible) {
  top: 6px !important;
  right: 6px !important;
  height: 32px !important;
  min-height: 32px !important;
  min-width: 58px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #3a3a3a !important;
  background-color: #3a3a3a !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 12px !important;
  font-weight: 760 !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-submit:is(:hover, :focus-visible) {
  background: #444444 !important;
  background-color: #444444 !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-scopes {
  gap: 8px !important;
  margin: 10px 0 0 !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-scope {
  min-height: 26px !important;
  padding: 0 10px !important;
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(255, 255, 255, 0.52) !important;
  font-size: 11px !important;
  font-weight: 680 !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-scope:is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, 0.06) !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-scope[data-active="true"] {
  background: rgba(255, 255, 255, 0.1) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-results {
  margin-top: 13px !important;
  padding: 0 !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-result {
  border-radius: 14px !important;
  color: rgba(255, 255, 255, 0.88) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] button.runtime-history-search-dialog-result:is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, 0.07) !important;
  background-color: rgba(255, 255, 255, 0.07) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-empty,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-status {
  color: rgba(255, 255, 255, 0.56) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(pre, .markdown-body pre) {
  background: var(--runtime-chat-content-surface, var(--runtime-surface-panel, #202020)) !important;
  background-color: var(--runtime-chat-content-surface, var(--runtime-surface-panel, #202020)) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(code, .markdown-body code):not(pre code) {
  background: #333333 !important;
  background-color: #333333 !important;
}

/* -------------------
 * 86. Composer Flat Controls And Search Glass Surface
 * ------------------- */

html body[data-runtime-shell-ready="true"] {
  --runtime-composer-flat-ring: 0 0 0 1px rgba(15, 23, 42, 0.09) !important;
  --runtime-composer-flat-ring-active: 0 0 0 1px rgba(15, 23, 42, 0.18) !important;
  --runtime-composer-flat-border-color: rgba(15, 23, 42, 0.08) !important;
}

html.dark body[data-runtime-shell-ready="true"] {
  --runtime-composer-flat-ring: 0 0 0 1px rgba(255, 255, 255, 0.105) !important;
  --runtime-composer-flat-ring-active: 0 0 0 1px rgba(255, 255, 255, 0.22) !important;
  --runtime-composer-flat-border-color: rgba(255, 255, 255, 0.08) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"]:not(#runtime-composer-card-polish-lock),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"]:not(#runtime-composer-card-polish-lock) {
  border: 0 solid transparent !important;
}

html body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent::before,
html.dark body[data-runtime-shell-ready="true"] footer .menu-container.bg-transparent::before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  button,
  [role="button"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-plugin-tool-entry-button="true"],
  button.btn-pill,
  .btn-pill[role="button"]
),
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  button,
  [role="button"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-plugin-tool-entry-button="true"],
  button.btn-pill,
  .btn-pill[role="button"]
):is(:hover, :focus, :focus-visible),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  button,
  [role="button"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-plugin-tool-entry-button="true"],
  button.btn-pill,
  .btn-pill[role="button"]
),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  button,
  [role="button"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-plugin-tool-entry-button="true"],
  button.btn-pill,
  .btn-pill[role="button"]
):is(:hover, :focus, :focus-visible) {
  box-shadow: var(--runtime-composer-flat-ring) !important;
  filter: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  button,
  [role="button"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-plugin-tool-entry-button="true"],
  button.btn-pill,
  .btn-pill[role="button"]
):is(:active, [aria-pressed="true"], [aria-expanded="true"], [data-active="true"], [data-state="active"], .btn-pill-active, .active),
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [role="button"][aria-pressed="true"][aria-label],
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [role="button"][data-active="true"][aria-label],
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [role="button"][data-state="active"][aria-label],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  button,
  [role="button"],
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-plugin-tool-entry-button="true"],
  button.btn-pill,
  .btn-pill[role="button"]
):is(:active, [aria-pressed="true"], [aria-expanded="true"], [data-active="true"], [data-state="active"], .btn-pill-active, .active),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [role="button"][aria-pressed="true"][aria-label],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [role="button"][data-active="true"][aria-label],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [role="button"][data-state="active"][aria-label] {
  box-shadow: var(--runtime-composer-flat-ring-active) !important;
  filter: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-panel {
  border-color: rgba(15, 23, 42, 0.075) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  background-color: rgba(255, 255, 255, 0.78) !important;
  background-image: none !important;
  backdrop-filter: blur(18px) saturate(1.05) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.05) !important;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.13) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-history-search-dialog="true"][data-runtime-history-search-dialog="true"] .runtime-history-search-dialog-panel {
  border-color: rgba(255, 255, 255, 0.105) !important;
  background: rgba(32, 32, 32, 0.78) !important;
  background-color: rgba(32, 32, 32, 0.78) !important;
  background-image: none !important;
  backdrop-filter: blur(18px) saturate(1.05) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.05) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32) !important;
}

/* -------------------
 * 87. Code Block Copy Button Restore
 * ------------------- */

html body[data-runtime-shell-ready="true"] .code-block-header__buttons,
html body[data-runtime-shell-ready="true"] [data-runtime-code-block-actions="true"],
html body[data-runtime-shell-ready="true"] .code-block-header > .flex.gap-2 {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  flex: 0 0 auto !important;
  min-height: 26px !important;
  white-space: nowrap !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-code-block-native-hidden="true"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

html body[data-runtime-shell-ready="true"] .code-block-header button,
html body[data-runtime-shell-ready="true"] .code-block-header [role="button"],
html body[data-runtime-shell-ready="true"] [data-runtime-code-block-copy="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-code-block-preview="true"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  min-width: 0 !important;
  height: 26px !important;
  padding: 0 10px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(15, 23, 42, 0.055) !important;
  background-color: rgba(15, 23, 42, 0.055) !important;
  color: rgba(15, 23, 42, 0.70) !important;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.045) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  cursor: pointer !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: background-color 0.12s ease, color 0.12s ease, box-shadow 0.12s ease !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-code-block-copy="true"] .runtime-code-block-action-icon,
html body[data-runtime-shell-ready="true"] [data-runtime-code-block-preview="true"] .runtime-code-block-action-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 13px !important;
  height: 13px !important;
  flex: 0 0 13px !important;
  color: currentColor !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-code-block-copy="true"] .runtime-code-block-action-icon svg,
html body[data-runtime-shell-ready="true"] [data-runtime-code-block-preview="true"] .runtime-code-block-action-icon svg {
  display: block !important;
  width: 13px !important;
  height: 13px !important;
  overflow: visible !important;
}

html body[data-runtime-shell-ready="true"] .code-block-header button:is(:hover, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"] .code-block-header [role="button"]:is(:hover, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-code-block-copy="true"]:is(:hover, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-code-block-preview="true"]:is(:hover, :focus, :focus-visible) {
  background: rgba(15, 23, 42, 0.095) !important;
  background-color: rgba(15, 23, 42, 0.095) !important;
  color: rgba(15, 23, 42, 0.90) !important;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.09) !important;
  outline: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-code-block-copy="true"]:active,
html body[data-runtime-shell-ready="true"] [data-runtime-code-block-preview="true"]:active {
  background: rgba(15, 23, 42, 0.13) !important;
  background-color: rgba(15, 23, 42, 0.13) !important;
  color: rgba(15, 23, 42, 0.94) !important;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-code-block-copy="true"][data-runtime-code-block-copy-state="copied"] {
  background: rgba(34, 197, 94, 0.15) !important;
  background-color: rgba(34, 197, 94, 0.15) !important;
  color: rgba(21, 128, 61, 0.96) !important;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.18) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-code-block-copy="true"][data-runtime-code-block-copy-state="failed"] {
  background: rgba(239, 68, 68, 0.14) !important;
  background-color: rgba(239, 68, 68, 0.14) !important;
  color: rgba(185, 28, 28, 0.96) !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.17) !important;
}

html.dark body[data-runtime-shell-ready="true"] .code-block-header button,
html.dark body[data-runtime-shell-ready="true"] .code-block-header [role="button"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-code-block-copy="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-code-block-preview="true"] {
  background: rgba(255, 255, 255, 0.075) !important;
  background-color: rgba(255, 255, 255, 0.075) !important;
  color: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.055) !important;
}

html.dark body[data-runtime-shell-ready="true"] .code-block-header button:is(:hover, :focus, :focus-visible),
html.dark body[data-runtime-shell-ready="true"] .code-block-header [role="button"]:is(:hover, :focus, :focus-visible),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-code-block-copy="true"]:is(:hover, :focus, :focus-visible),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-code-block-preview="true"]:is(:hover, :focus, :focus-visible) {
  background: rgba(255, 255, 255, 0.13) !important;
  background-color: rgba(255, 255, 255, 0.13) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-code-block-copy="true"]:active,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-code-block-preview="true"]:active {
  background: rgba(255, 255, 255, 0.16) !important;
  background-color: rgba(255, 255, 255, 0.16) !important;
  color: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14) !important;
}

html body[data-runtime-shell-ready="true"] .code-block-header [data-runtime-code-block-native-hidden="true"],
html.dark body[data-runtime-shell-ready="true"] .code-block-header [data-runtime-code-block-native-hidden="true"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-code-block-copy="true"][data-runtime-code-block-copy-state="copied"] {
  background: rgba(34, 197, 94, 0.16) !important;
  background-color: rgba(34, 197, 94, 0.16) !important;
  color: rgba(134, 239, 172, 0.96) !important;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.20) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-code-block-copy="true"][data-runtime-code-block-copy-state="failed"] {
  background: rgba(248, 113, 113, 0.16) !important;
  background-color: rgba(248, 113, 113, 0.16) !important;
  color: rgba(252, 165, 165, 0.96) !important;
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.20) !important;
}

html body[data-runtime-shell-ready="true"] iframe[data-runtime-html-sanitized="true"],
html body[data-runtime-shell-ready="true"] iframe.html-iframe {
  width: 100% !important;
  height: min(72vh, calc(100vh - 148px)) !important;
  min-height: 420px !important;
  max-height: calc(100vh - 148px) !important;
  border: 0 !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.08) !important;
  overflow: auto !important;
}

html.dark body[data-runtime-shell-ready="true"] iframe[data-runtime-html-sanitized="true"],
html.dark body[data-runtime-shell-ready="true"] iframe.html-iframe {
  background: rgba(30, 41, 59, 0.96) !important;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.10) !important;
}

html body[data-runtime-shell-ready="true"] .preview-area .content-renderer,
html body[data-runtime-shell-ready="true"] .preview-area .content-renderer > div {
  height: 100% !important;
  min-height: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-panel="true"] {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  border-left: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-panel="true"].shadow-lg,
html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-panel="true"].shadow-md,
html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-panel="true"][class*="shadow"] {
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-toolbar="true"] {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 56px !important;
  min-height: 56px !important;
  max-height: 56px !important;
  flex: 0 0 56px !important;
  padding: 8px 14px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  pointer-events: auto !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-toolbar="true"] {
  background: transparent !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-toolbar="true"] > * {
  pointer-events: auto !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-toolbar="true"] :is(button, [role="button"], .btn-icon, .cursor-pointer) {
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08) !important;
  backdrop-filter: blur(12px) saturate(1.06) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.06) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-toolbar="true"] :is(button, [role="button"], .btn-icon, .cursor-pointer) {
  background: rgba(30, 41, 59, 0.72) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.10) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tabs="true"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 4px !important;
  border-radius: 12px !important;
  background: var(--runtime-surface-soft, rgba(248, 250, 252, 0.92)) !important;
  background-color: var(--runtime-surface-soft, rgba(248, 250, 252, 0.92)) !important;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tabs="true"] {
  background: rgba(15, 23, 42, 0.72) !important;
  background-color: rgba(15, 23, 42, 0.72) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tab] {
  min-width: 46px !important;
  height: 32px !important;
  border: 0 !important;
  border-radius: 9px !important;
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-text-muted, rgba(71, 85, 105, 0.94)) !important;
  box-shadow: none !important;
  transition: background-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tab] .i-icon,
html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tab] svg {
  color: currentColor !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tab].tab-active,
html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tab].active,
html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tab][aria-selected="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tab][aria-pressed="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tab][data-active="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tab][data-state="active"] {
  background: var(--runtime-surface-panel, #ffffff) !important;
  background-color: var(--runtime-surface-panel, #ffffff) !important;
  color: var(--runtime-text-primary, #0f172a) !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.10), 0 0 0 1px rgba(15, 23, 42, 0.08) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tab] {
  color: rgba(203, 213, 225, 0.86) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tab].tab-active,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tab].active,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tab][aria-selected="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tab][aria-pressed="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tab][data-active="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-device-tab][data-state="active"] {
  background: rgba(30, 41, 59, 0.96) !important;
  background-color: rgba(30, 41, 59, 0.96) !important;
  color: rgba(248, 250, 252, 0.96) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.12) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-stage="true"] {
  flex: 1 1 auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-area="true"] {
  inset: 0 !important;
  padding: 0 !important;
}

html body[data-runtime-shell-ready="true"] .preview-area .content-renderer > div {
  align-items: stretch !important;
  justify-content: flex-start !important;
}

html body[data-runtime-shell-ready="true"] .preview-area iframe[data-runtime-html-sanitized="true"],
html body[data-runtime-shell-ready="true"] .preview-area iframe.html-iframe {
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] .preview-area.preview-area iframe.shadow-lg[data-runtime-html-sanitized="true"],
html body[data-runtime-shell-ready="true"] .preview-area.preview-area iframe.shadow-md[data-runtime-html-sanitized="true"],
html body[data-runtime-shell-ready="true"] .preview-area.preview-area iframe.html-iframe {
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-area="true"][data-runtime-html-preview-device="desktop"] .content-renderer > div {
  align-items: stretch !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-area="true"][data-runtime-html-preview-device="tablet"] .content-renderer,
html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-area="true"][data-runtime-html-preview-device="mobile"] .content-renderer {
  display: flex !important;
  justify-content: center !important;
  align-items: stretch !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-area="true"][data-runtime-html-preview-device="tablet"] .content-renderer > div,
html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-area="true"][data-runtime-html-preview-device="mobile"] .content-renderer > div {
  width: 100% !important;
  justify-content: center !important;
  align-items: stretch !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-area="true"][data-runtime-html-preview-device="tablet"] iframe[data-runtime-html-sanitized="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-area="true"][data-runtime-html-preview-device="tablet"] iframe.html-iframe {
  width: min(768px, calc(100% - 32px)) !important;
  max-width: min(768px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
  display: block !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-area="true"][data-runtime-html-preview-device="mobile"] iframe[data-runtime-html-sanitized="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-area="true"][data-runtime-html-preview-device="mobile"] iframe.html-iframe {
  width: min(390px, calc(100% - 32px)) !important;
  max-width: min(390px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
  display: block !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-html-previewer-open="true"] [data-runtime-header-actions="true"],
html body[data-runtime-shell-ready="true"]:has([data-runtime-html-previewer-area="true"]) [data-runtime-header-actions="true"],
html body[data-runtime-shell-ready="true"][data-runtime-html-previewer-open="true"] button[data-runtime-private-chat-entry="true"],
html body[data-runtime-shell-ready="true"][data-runtime-html-previewer-open="true"] [data-runtime-private-chat-slot="true"],
html body[data-runtime-shell-ready="true"][data-runtime-html-previewer-open="true"] [data-runtime-header-action="private"],
html body[data-runtime-shell-ready="true"][data-runtime-html-previewer-open="true"] [data-runtime-header-action-slot="true"]:has([data-runtime-header-action="private"]),
html body[data-runtime-shell-ready="true"][data-runtime-html-previewer-open="true"] [data-runtime-header-action-slot="true"]:has([data-runtime-private-chat-entry="true"]),
html body[data-runtime-shell-ready="true"][data-runtime-html-previewer-open="true"] [data-runtime-header-action-slot="true"]:has([aria-label*="私密"]),
html body[data-runtime-shell-ready="true"][data-runtime-html-previewer-open="true"] [data-runtime-header-action-slot="true"]:has([title*="私密"]),
html body[data-runtime-shell-ready="true"][data-runtime-html-previewer-open="true"] [data-runtime-header-action-slot="true"]:has([aria-label*="private" i]),
html body[data-runtime-shell-ready="true"][data-runtime-html-previewer-open="true"] [data-runtime-header-action-slot="true"]:has([title*="private" i]),
html body[data-runtime-shell-ready="true"][data-runtime-html-previewer-open="true"] [data-runtime-header-actions="true"] :is(button, [role="button"]):is([aria-label*="私密"], [title*="私密"], [aria-label*="隐私"], [title*="隐私"], [aria-label*="隱私"], [title*="隱私"], [aria-label*="private" i], [title*="private" i], [aria-label*="プライベート"], [title*="プライベート"]),
html body[data-runtime-shell-ready="true"] [data-runtime-html-previewer-hidden="true"],
html body[data-runtime-shell-ready="true"]:has([data-runtime-html-previewer-area="true"]) button[data-runtime-private-chat-entry="true"],
html body[data-runtime-shell-ready="true"]:has([data-runtime-html-previewer-area="true"]) [data-runtime-private-chat-slot="true"],
html body[data-runtime-shell-ready="true"]:has([data-runtime-html-previewer-area="true"]) [data-runtime-header-action="private"],
html body[data-runtime-shell-ready="true"]:has([data-runtime-html-previewer-area="true"]) [data-runtime-header-action-slot="true"]:has([data-runtime-header-action="private"]),
html body[data-runtime-shell-ready="true"]:has([data-runtime-html-previewer-area="true"]) [data-runtime-header-action-slot="true"]:has([data-runtime-private-chat-entry="true"]),
html body[data-runtime-shell-ready="true"]:has([data-runtime-html-previewer-area="true"]) [data-runtime-header-action-slot="true"]:has([aria-label*="私密"]),
html body[data-runtime-shell-ready="true"]:has([data-runtime-html-previewer-area="true"]) [data-runtime-header-action-slot="true"]:has([title*="私密"]),
html body[data-runtime-shell-ready="true"]:has([data-runtime-html-previewer-area="true"]) [data-runtime-header-action-slot="true"]:has([aria-label*="private" i]),
html body[data-runtime-shell-ready="true"]:has([data-runtime-html-previewer-area="true"]) [data-runtime-header-action-slot="true"]:has([title*="private" i]),
html body[data-runtime-shell-ready="true"]:has([data-runtime-html-previewer-area="true"]) [data-runtime-header-actions="true"] :is(button, [role="button"]):is([aria-label*="私密"], [title*="私密"], [aria-label*="隐私"], [title*="隐私"], [aria-label*="隱私"], [title*="隱私"], [aria-label*="private" i], [title*="private" i], [aria-label*="プライベート"], [title*="プライベート"]) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* -------------------
 * 87. Message Editor Surface Unification
 * ------------------- */

html body[data-runtime-shell-ready="true"] [class*="rounded-tl-2xl"][class*="rounded-bl-2xl"][class*="border-l"]:has(> .editor-scroll-container) {
  --runtime-message-editor-surface: var(--runtime-chat-content-surface, var(--runtime-surface-panel, #ffffff)) !important;
  background: var(--runtime-message-editor-surface) !important;
  background-color: var(--runtime-message-editor-surface) !important;
  background-image: none !important;
  border-left: 0 !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [class*="rounded-tl-2xl"][class*="rounded-bl-2xl"][class*="border-l"]:has(> .editor-scroll-container) > [class*="justify-between"][class*="items-center"][class*="border-b"],
html body[data-runtime-shell-ready="true"] [class*="rounded-tl-2xl"][class*="rounded-bl-2xl"][class*="border-l"]:has(> .editor-scroll-container) > .editor-scroll-container {
  background: var(--runtime-message-editor-surface) !important;
  background-color: var(--runtime-message-editor-surface) !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html body[data-runtime-shell-ready="true"] [class*="rounded-tl-2xl"][class*="rounded-bl-2xl"][class*="border-l"]:has(> .editor-scroll-container) > [class*="justify-between"][class*="items-center"][class*="border-b"] {
  border-bottom-color: var(--runtime-divider, rgba(17, 17, 17, 0.08)) !important;
}

html.dark body[data-runtime-shell-ready="true"] [class*="rounded-tl-2xl"][class*="rounded-bl-2xl"][class*="border-l"]:has(> .editor-scroll-container) > [class*="justify-between"][class*="items-center"][class*="border-b"] {
  border-bottom-color: var(--runtime-divider, rgba(255, 255, 255, 0.08)) !important;
}

html body[data-runtime-shell-ready="true"] [class*="rounded-tl-2xl"][class*="rounded-bl-2xl"][class*="border-l"]:has(> .editor-scroll-container) .editor-scroll-container :is(.prose, .markdown-body, .md-editor-preview) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* -------------------
 * 88. Chat Content Surface Unification
 * ------------------- */

html body[data-runtime-shell-ready="true"] {
  --runtime-chat-content-surface: var(--runtime-surface-panel, #ffffff) !important;
  --runtime-chat-content-surface-hover: var(--runtime-surface-card-hover, #ebebeb) !important;
  --runtime-chat-content-surface-active: var(--runtime-surface-card-active, #dddddd) !important;
  --runtime-chat-content-chip-bg: rgba(15, 23, 42, 0.055) !important;
  --runtime-chat-content-chip-hover-bg: rgba(15, 23, 42, 0.095) !important;
  --runtime-chat-content-chip-active-bg: rgba(15, 23, 42, 0.13) !important;
}

html.dark body[data-runtime-shell-ready="true"] {
  --runtime-chat-content-surface: var(--runtime-surface-card, #2a2a2a) !important;
  --runtime-chat-content-surface-hover: var(--runtime-surface-card-hover, #303030) !important;
  --runtime-chat-content-surface-active: var(--runtime-surface-card-active, #383838) !important;
  --runtime-chat-content-chip-bg: rgba(255, 255, 255, 0.075) !important;
  --runtime-chat-content-chip-hover-bg: rgba(255, 255, 255, 0.12) !important;
  --runtime-chat-content-chip-active-bg: rgba(255, 255, 255, 0.15) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  pre.max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"],
  .markdown-body pre.max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"],
  #image-wrapper pre.max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"],
  .max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"]:has(.code-block-header)
) {
  background: var(--runtime-chat-content-surface) !important;
  background-color: var(--runtime-chat-content-surface) !important;
  background-image: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .markdown-body .hljs.code-content-scrollable,
  #image-wrapper .hljs.code-content-scrollable,
  .hljs.code-content-scrollable.code-container,
  pre.max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"] .hljs.code-content-scrollable
) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .thinking-card,
  #image-wrapper .thinking-card,
  .thinking-card.transition-all.duration-300.ease-out.rounded-lg
) {
  background: var(--runtime-chat-content-surface) !important;
  background-color: var(--runtime-chat-content-surface) !important;
  background-image: none !important;
  border-color: rgba(255, 255, 255, 0.045) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .thinking-card:hover,
  .thinking-card:focus-within,
  #image-wrapper .thinking-card:hover,
  #image-wrapper .thinking-card:focus-within
) {
  background: var(--runtime-chat-content-surface-hover) !important;
  background-color: var(--runtime-chat-content-surface-hover) !important;
  background-image: none !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .thinking-card > button,
  #image-wrapper .thinking-card > button
),
html.dark body[data-runtime-shell-ready="true"] :is(
  .thinking-card > button:hover,
  .thinking-card > button:focus,
  .thinking-card > button:focus-visible,
  .thinking-card > button:active,
  #image-wrapper .thinking-card > button:hover,
  #image-wrapper .thinking-card > button:focus,
  #image-wrapper .thinking-card > button:focus-visible,
  #image-wrapper .thinking-card > button:active
) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  pre.max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"],
  .markdown-body pre.max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"],
  #image-wrapper pre.max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"],
  .max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"]:has(.code-block-header)
) {
  background: var(--runtime-chat-content-surface) !important;
  background-color: var(--runtime-chat-content-surface) !important;
  background-image: none !important;
  border-color: rgba(255, 255, 255, 0.045) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  pre.max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"] .code-block-wrapper,
  pre.max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"] .code-block-header,
  .markdown-body pre.max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"] .code-block-wrapper,
  .markdown-body pre.max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"] .code-block-header,
  #image-wrapper pre.max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"] .code-block-wrapper,
  #image-wrapper pre.max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"] .code-block-header
) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border-color: rgba(255, 255, 255, 0.045) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .markdown-body .hljs.code-content-scrollable,
  #image-wrapper .hljs.code-content-scrollable,
  .hljs.code-content-scrollable.code-container,
  pre.max-w-full.transition-colors[class*="border-gray-200"][class*="dark:border-gray-700"] .hljs.code-content-scrollable
) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .btn-icon.btn-icon-action,
  button.btn-icon.btn-icon-action,
  #image-wrapper .btn-icon.btn-icon-action,
  .i-icon.i-icon-down-small.rounded-full
) {
  background: var(--runtime-chat-content-surface) !important;
  background-color: var(--runtime-chat-content-surface) !important;
  background-image: none !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .btn-icon.btn-icon-action:hover,
  .btn-icon.btn-icon-action:focus,
  .btn-icon.btn-icon-action:focus-visible,
  #image-wrapper .btn-icon.btn-icon-action:hover,
  #image-wrapper .btn-icon.btn-icon-action:focus,
  #image-wrapper .btn-icon.btn-icon-action:focus-visible,
  .i-icon.i-icon-down-small.rounded-full:hover,
  .i-icon.i-icon-down-small.rounded-full:focus,
  .i-icon.i-icon-down-small.rounded-full:focus-visible
) {
  background: var(--runtime-chat-content-surface-hover) !important;
  background-color: var(--runtime-chat-content-surface-hover) !important;
  background-image: none !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .btn-icon.btn-icon-action:active,
  #image-wrapper .btn-icon.btn-icon-action:active,
  .i-icon.i-icon-down-small.rounded-full:active
) {
  background: var(--runtime-chat-content-surface-active) !important;
  background-color: var(--runtime-chat-content-surface-active) !important;
  background-image: none !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .code-block-header button,
  .code-block-header [role="button"],
  [data-runtime-code-block-copy="true"],
  [data-runtime-code-block-preview="true"]
) {
  background: var(--runtime-chat-content-chip-bg) !important;
  background-color: var(--runtime-chat-content-chip-bg) !important;
  background-image: none !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .code-block-header button:hover,
  .code-block-header button:focus,
  .code-block-header button:focus-visible,
  .code-block-header [role="button"]:hover,
  .code-block-header [role="button"]:focus,
  .code-block-header [role="button"]:focus-visible,
  [data-runtime-code-block-copy="true"]:hover,
  [data-runtime-code-block-copy="true"]:focus,
  [data-runtime-code-block-copy="true"]:focus-visible,
  [data-runtime-code-block-preview="true"]:hover,
  [data-runtime-code-block-preview="true"]:focus,
  [data-runtime-code-block-preview="true"]:focus-visible
) {
  background: var(--runtime-chat-content-chip-hover-bg) !important;
  background-color: var(--runtime-chat-content-chip-hover-bg) !important;
  background-image: none !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .code-block-header button:active,
  .code-block-header [role="button"]:active,
  [data-runtime-code-block-copy="true"]:active,
  [data-runtime-code-block-preview="true"]:active
) {
  background: var(--runtime-chat-content-chip-active-bg) !important;
  background-color: var(--runtime-chat-content-chip-active-bg) !important;
  background-image: none !important;
}

/* -------------------
 * 89. Dark Message Bubble Panel Alignment
 * ------------------- */

html.dark body[data-runtime-shell-ready="true"] {
  --runtime-chat-content-surface: var(--runtime-canvas-bg, #202020) !important;
  --runtime-chat-content-surface-hover: var(--runtime-canvas-bg, #202020) !important;
  --runtime-chat-content-surface-active: var(--runtime-canvas-bg, #202020) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .ai-message .message-content,
  .ai-message .markdown-body:not(.message-content .markdown-body),
  .user-message .message-content,
  .user-message .rounded-2xl:not(.message-content .rounded-2xl),
  #image-wrapper .markdown-body.text-gray-950.dark\:text-gray-100:not(:empty),
  #image-wrapper .markdown-body.markdown-body-generate:not(:empty),
  #image-wrapper .p-3.rounded-2xl.text-base.bg-opacity.dark\:bg-gray-750.break-words.whitespace-pre-wrap.text-gray-950.dark\:text-gray-100
),
html.dark body[data-runtime-shell-ready="true"] #image-wrapper .flex.w-full.my-2.pb-3.items-start.flex-row :is(
  .markdown-body,
  .rounded-2xl.text-base.break-words.whitespace-pre-wrap
) {
  background: var(--runtime-chat-content-surface) !important;
  background-color: var(--runtime-chat-content-surface) !important;
  background-image: none !important;
  border: 0 !important;
  border-color: transparent !important;
  border-radius: 15px !important;
  box-shadow: var(--runtime-shadow-selected) !important;
}

html.dark body[data-runtime-shell-ready="true"] #image-wrapper :is(
  .markdown-body.markdown-body-generate,
  .markdown-body.text-gray-950.dark\:text-gray-100,
  .p-3.rounded-2xl.text-base.bg-opacity.dark\:bg-gray-750.break-words.whitespace-pre-wrap.text-gray-950.dark\:text-gray-100,
  .rounded-2xl.text-base.break-words.whitespace-pre-wrap
):not(:empty) {
  background: var(--runtime-canvas-bg, #202020) !important;
  background-color: var(--runtime-canvas-bg, #202020) !important;
  background-image: none !important;
  border: 0 !important;
  border-color: transparent !important;
  border-radius: 15px !important;
  box-shadow: var(--runtime-shadow-selected) !important;
}

/* -------------------
 * 90. History Cleanup Modal Polish
 * ------------------- */

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-panel,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] .runtime-project-manager-modal-panel {
  box-sizing: border-box !important;
  position: relative !important;
  width: min(420px, calc(100vw - 40px)) !important;
  padding: 22px 22px 20px !important;
  overflow: visible !important;
  isolation: isolate !important;
  border: 0 !important;
  border-radius: 24px !important;
  background: rgba(246, 247, 250, 0.96) !important;
  background-color: rgba(246, 247, 250, 0.96) !important;
  background-image: none !important;
  color: var(--runtime-color-text-primary, rgba(15, 23, 42, 0.92)) !important;
  box-shadow: 0 22px 62px rgba(15, 23, 42, 0.12) !important;
  backdrop-filter: blur(20px) saturate(1.08) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-panel,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] .runtime-project-manager-modal-panel {
  background: rgba(42, 42, 46, 0.96) !important;
  background-color: rgba(42, 42, 46, 0.96) !important;
  color: var(--runtime-color-text-primary, rgba(248, 250, 252, 0.92)) !important;
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.36) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] :is(
  .runtime-project-manager-modal-header,
  .runtime-project-manager-modal-title,
  .runtime-project-manager-modal-message,
  .runtime-project-manager-modal-actions
),
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] :is(
  .runtime-project-manager-modal-header,
  .runtime-project-manager-modal-title,
  .runtime-project-manager-modal-message,
  .runtime-project-manager-modal-actions
) {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] :is(
  .runtime-project-manager-modal-header,
  .runtime-project-manager-modal-title,
  .runtime-project-manager-modal-message,
  .runtime-project-manager-modal-actions,
  .runtime-project-manager-modal-button,
  .runtime-project-manager-modal-select-field,
  .runtime-project-manager-modal-select-trigger,
  .runtime-project-manager-modal-select-menu,
  .runtime-project-manager-modal-select-option
),
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] :is(
  .runtime-project-manager-modal-header,
  .runtime-project-manager-modal-title,
  .runtime-project-manager-modal-message,
  .runtime-project-manager-modal-actions,
  .runtime-project-manager-modal-button
) {
  border: 0 !important;
  outline: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] :is(
  .runtime-project-manager-modal-header,
  .runtime-project-manager-modal-title,
  .runtime-project-manager-modal-message,
  .runtime-project-manager-modal-actions
)::before,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] :is(
  .runtime-project-manager-modal-header,
  .runtime-project-manager-modal-title,
  .runtime-project-manager-modal-message,
  .runtime-project-manager-modal-actions
)::after {
  display: none !important;
  content: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-title,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] .runtime-project-manager-modal-title {
  max-width: calc(100% - 38px) !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: rgba(15, 23, 42, 0.92) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  line-height: 1.32 !important;
  letter-spacing: -0.025em !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-title,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] .runtime-project-manager-modal-title {
  color: rgba(248, 250, 252, 0.94) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-message,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] .runtime-project-manager-modal-message {
  margin-top: 8px !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: rgba(51, 65, 85, 0.66) !important;
  font-size: 13px !important;
  font-weight: 540 !important;
  line-height: 1.68 !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-message,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] .runtime-project-manager-modal-message {
  color: rgba(226, 232, 240, 0.68) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-title-break,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] .runtime-project-manager-modal-title-break {
  display: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-actions {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: none !important;
  margin-top: 18px !important;
  margin-left: 0 !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] .runtime-project-manager-modal-actions {
  display: flex !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: none !important;
  margin-top: 20px !important;
  margin-left: 0 !important;
  justify-content: flex-end !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button {
  min-width: 0 !important;
  min-height: 42px !important;
  padding: 0 13px !important;
  border: 0 !important;
  border-radius: 15px !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  line-height: 1 !important;
  font-size: 13px !important;
  font-weight: 760 !important;
  color: rgba(15, 23, 42, 0.76) !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
  transition: background-color 0.14s ease, color 0.14s ease, box-shadow 0.14s ease, opacity 0.14s ease, transform 0.1s ease !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-field {
  position: relative !important;
  order: 1 !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  height: 42px !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-trigger {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  width: 100% !important;
  height: 42px !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 14px !important;
  border: 0 !important;
  border-radius: 15px !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: rgba(15, 23, 42, 0.82) !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 760 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  transition: background-color 0.14s ease, box-shadow 0.14s ease, color 0.14s ease !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-trigger:is(:hover, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-field[data-open="true"] .runtime-project-manager-modal-select-trigger {
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(15, 23, 42, 0.92) !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-label {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-arrow {
  flex: 0 0 auto !important;
  color: rgba(51, 65, 85, 0.62) !important;
  font-size: 15px !important;
  font-weight: 760 !important;
  line-height: 1 !important;
  transform: translateY(-1px) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-menu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 8 !important;
  display: none !important;
  box-sizing: border-box !important;
  max-height: 220px !important;
  padding: 6px !important;
  overflow: auto !important;
  border: 0 !important;
  border-radius: 16px !important;
  outline: 0 !important;
  background: rgba(246, 247, 250, 0.98) !important;
  background-color: rgba(246, 247, 250, 0.98) !important;
  background-image: none !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-field[data-open="true"] .runtime-project-manager-modal-select-menu {
  display: grid !important;
  gap: 3px !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-option {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 34px !important;
  margin: 0 !important;
  padding: 0 10px !important;
  border: 0 !important;
  border-radius: 11px !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: rgba(15, 23, 42, 0.72) !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1 !important;
  text-align: left !important;
  cursor: pointer !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-option:is(:hover, :focus-visible) {
  background: rgba(15, 23, 42, 0.06) !important;
  background-color: rgba(15, 23, 42, 0.06) !important;
  color: rgba(15, 23, 42, 0.92) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-option[data-selected="true"] {
  background: rgba(15, 23, 42, 0.09) !important;
  background-color: rgba(15, 23, 42, 0.09) !important;
  color: rgba(15, 23, 42, 0.94) !important;
  font-weight: 780 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="choice"] {
  order: 1 !important;
  flex: 1 1 0 !important;
  width: auto !important;
  min-width: 56px !important;
  max-width: none !important;
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(15, 23, 42, 0.72) !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-tone="danger"] {
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(15, 23, 42, 0.78) !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"] {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  z-index: 2 !important;
  display: inline-grid !important;
  width: 30px !important;
  min-width: 30px !important;
  height: 30px !important;
  min-height: 30px !important;
  margin: 0 !important;
  padding: 0 !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(51, 65, 85, 0.52) !important;
  font-size: 0 !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="confirm"] {
  order: 2 !important;
  flex: 0 0 auto !important;
  min-width: 78px !important;
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(15, 23, 42, 0.78) !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"]::before {
  content: "×" !important;
  display: block !important;
  font-size: 20px !important;
  font-weight: 520 !important;
  line-height: 1 !important;
  transform: translateY(-1px) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"] {
  min-width: 82px !important;
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(15, 23, 42, 0.64) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-tone="danger"] {
  min-width: 112px !important;
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(15, 23, 42, 0.78) !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="confirm"]:not(:disabled):is(:hover, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(15, 23, 42, 0.92) !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button:not(:disabled):is(:hover, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button:not(:disabled):is(:hover, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(15, 23, 42, 0.92) !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-tone="danger"]:not(:disabled):is(:hover, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-tone="danger"]:not(:disabled):is(:hover, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(15, 23, 42, 0.92) !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button:not(:disabled):active,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button:not(:disabled):active {
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(15, 23, 42, 0.96) !important;
  box-shadow: none !important;
  transform: translateY(1px) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="choice"] {
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(248, 250, 252, 0.78) !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-tone="danger"] {
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(248, 250, 252, 0.8) !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"] {
  color: rgba(248, 250, 252, 0.56) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-trigger {
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(248, 250, 252, 0.82) !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-trigger:is(:hover, :focus-visible),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-field[data-open="true"] .runtime-project-manager-modal-select-trigger {
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(248, 250, 252, 0.94) !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-arrow {
  color: rgba(226, 232, 240, 0.62) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-menu {
  background: rgba(42, 42, 46, 0.98) !important;
  background-color: rgba(42, 42, 46, 0.98) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-option {
  color: rgba(248, 250, 252, 0.72) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-option:is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: rgba(248, 250, 252, 0.94) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-option[data-selected="true"] {
  background: rgba(255, 255, 255, 0.12) !important;
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(248, 250, 252, 0.96) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="confirm"] {
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(248, 250, 252, 0.8) !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"] {
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(248, 250, 252, 0.68) !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-tone="danger"] {
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(248, 250, 252, 0.8) !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button:not(:disabled):is(:hover, :focus-visible),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button:not(:disabled):is(:hover, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(248, 250, 252, 0.94) !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-tone="danger"]:not(:disabled):is(:hover, :focus-visible),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-tone="danger"]:not(:disabled):is(:hover, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(248, 250, 252, 0.94) !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-select-trigger.runtime-project-manager-modal-select-trigger,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-select-trigger.runtime-project-manager-modal-select-trigger:is(:hover, :active, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-field[data-open="true"] button.runtime-project-manager-modal-select-trigger.runtime-project-manager-modal-select-trigger {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-select-trigger.runtime-project-manager-modal-select-trigger,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-select-trigger.runtime-project-manager-modal-select-trigger:is(:hover, :active, :focus, :focus-visible),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-field[data-open="true"] button.runtime-project-manager-modal-select-trigger.runtime-project-manager-modal-select-trigger {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-panel > :is(
  .runtime-project-manager-modal-header,
  .runtime-project-manager-modal-title-break,
  .runtime-project-manager-modal-message,
  .runtime-project-manager-modal-actions
),
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-panel .runtime-project-manager-modal-title,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] .runtime-project-manager-modal-panel > :is(
  .runtime-project-manager-modal-header,
  .runtime-project-manager-modal-title-break,
  .runtime-project-manager-modal-message,
  .runtime-project-manager-modal-actions
),
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] .runtime-project-manager-modal-panel .runtime-project-manager-modal-title {
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button:is(:hover, :active, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-select-trigger.runtime-project-manager-modal-select-trigger,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-select-trigger.runtime-project-manager-modal-select-trigger:is(:hover, :active, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-select-option.runtime-project-manager-modal-select-option,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-select-option.runtime-project-manager-modal-select-option:is(:hover, :active, :focus, :focus-visible) {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-select-trigger.runtime-project-manager-modal-select-trigger,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="confirm"] {
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.07) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-select-trigger.runtime-project-manager-modal-select-trigger:is(:hover, :active, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-field[data-open="true"] button.runtime-project-manager-modal-select-trigger.runtime-project-manager-modal-select-trigger,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="confirm"]:not(:disabled):is(:hover, :active, :focus, :focus-visible) {
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.12) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-select-trigger.runtime-project-manager-modal-select-trigger,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="confirm"] {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-select-trigger.runtime-project-manager-modal-select-trigger:is(:hover, :active, :focus, :focus-visible),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-field[data-open="true"] button.runtime-project-manager-modal-select-trigger.runtime-project-manager-modal-select-trigger,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="confirm"]:not(:disabled):is(:hover, :active, :focus, :focus-visible) {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.16) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-select-option.runtime-project-manager-modal-select-option,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-select-option.runtime-project-manager-modal-select-option:is(:hover, :active, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] button.runtime-project-manager-modal-select-option.runtime-project-manager-modal-select-option[data-selected="true"] {
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-panel.runtime-project-manager-modal-panel,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] .runtime-project-manager-modal-panel.runtime-project-manager-modal-panel {
  background: var(--runtime-surface-panel, rgba(22, 22, 22, 0.92)) !important;
  background-color: var(--runtime-surface-panel, rgba(22, 22, 22, 0.92)) !important;
  background-image: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-panel.runtime-project-manager-modal-panel > :is(
  .runtime-project-manager-modal-header,
  .runtime-project-manager-modal-title-break,
  .runtime-project-manager-modal-message,
  .runtime-project-manager-modal-actions
),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-panel.runtime-project-manager-modal-panel .runtime-project-manager-modal-title,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] .runtime-project-manager-modal-panel.runtime-project-manager-modal-panel > :is(
  .runtime-project-manager-modal-header,
  .runtime-project-manager-modal-title-break,
  .runtime-project-manager-modal-message,
  .runtime-project-manager-modal-actions
),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-confirm"] .runtime-project-manager-modal-panel.runtime-project-manager-modal-panel .runtime-project-manager-modal-title {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-cleanup-range"] .runtime-project-manager-modal-select-menu.runtime-project-manager-modal-select-menu {
  background: var(--runtime-surface-menu, rgba(18, 18, 18, 0.96)) !important;
  background-color: var(--runtime-surface-menu, rgba(18, 18, 18, 0.96)) !important;
  background-image: none !important;
}

/* -------------------
 * 98. Topbar Language Menu Flat Rows
 * ------------------- */

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action-slot="true"]:has([data-runtime-header-action="language"]) .menu-items :is(
  .menu-item,
  .menu-item.menu-item-sm,
  .menu-item.menu-item-md,
  [role="menuitem"],
  [role="option"],
  button
),
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action="language"] + .menu-items :is(
  .menu-item,
  .menu-item.menu-item-sm,
  .menu-item.menu-item-md,
  [role="menuitem"],
  [role="option"],
  button
) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  transition: color 0.14s ease, opacity 0.14s ease !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action-slot="true"]:has([data-runtime-header-action="language"]) .menu-items :is(
  .menu-item,
  .menu-item.menu-item-sm,
  .menu-item.menu-item-md,
  [role="menuitem"],
  [role="option"],
  button
):is(:hover, :focus, :focus-visible, :active, [aria-pressed="true"], [aria-selected="true"], .is-active, .active, .selected, .menu-item-active),
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action="language"] + .menu-items :is(
  .menu-item,
  .menu-item.menu-item-sm,
  .menu-item.menu-item-md,
  [role="menuitem"],
  [role="option"],
  button
):is(:hover, :focus, :focus-visible, :active, [aria-pressed="true"], [aria-selected="true"], .is-active, .active, .selected, .menu-item-active) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--runtime-color-text-primary, #111111) !important;
  filter: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action-slot="true"]:has([data-runtime-header-action="language"]) .menu-items :is(.menu-item-active, .active, .selected, [aria-selected="true"], [aria-pressed="true"]),
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] [data-runtime-header-action="language"] + .menu-items :is(.menu-item-active, .active, .selected, [aria-selected="true"], [aria-pressed="true"]) {
  color: var(--runtime-color-text-primary, #111111) !important;
  font-weight: 600 !important;
}

/* -------------------
 * 99. Composer Tool Button Active State Lock
 * ------------------- */

html body[data-runtime-shell-ready="true"] {
  --runtime-composer-tool-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08) !important;
  --runtime-composer-tool-hover-shadow: 0 0 0 1px rgba(15, 23, 42, 0.14) !important;
  --runtime-composer-tool-active-shadow: 0 0 0 2px rgba(15, 23, 42, 0.30) !important;
}

html.dark body[data-runtime-shell-ready="true"] {
  --runtime-composer-tool-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) !important;
  --runtime-composer-tool-hover-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
  --runtime-composer-tool-active-shadow: 0 0 0 2px rgba(255, 255, 255, 0.34) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  [data-runtime-composer-search-tool="true"]:not(:has([data-runtime-composer-search-tool="true"])):is(button, [role="button"], a, [aria-label], .btn-pill),
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-plugin-tool-entry-button="true"]
) {
  box-shadow: var(--runtime-composer-tool-shadow) !important;
  border-radius: 999px !important;
  outline: 0 !important;
  transition: background-color 120ms ease, color 120ms ease !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  [data-runtime-composer-search-tool="true"]:not(:has([data-runtime-composer-search-tool="true"])):is(button, [role="button"], a, [aria-label], .btn-pill):not([aria-pressed="true"]):hover,
  [data-runtime-composer-search-tool="true"]:not(:has([data-runtime-composer-search-tool="true"])):is(button, [role="button"], a, [aria-label], .btn-pill)[aria-pressed="false"]:focus,
  [data-runtime-composer-search-tool="true"]:not(:has([data-runtime-composer-search-tool="true"])):is(button, [role="button"], a, [aria-label], .btn-pill)[aria-pressed="false"]:focus-visible,
  [data-runtime-knowledge-base-entry-button="true"]:not([aria-pressed="true"]):hover,
  [data-runtime-plugin-tool-entry-button="true"]:not([aria-expanded="true"]):hover
) {
  box-shadow: var(--runtime-composer-tool-hover-shadow) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  [data-runtime-composer-search-tool="true"]:not(:has([data-runtime-composer-search-tool="true"])):is(button, [role="button"], a, [aria-label], .btn-pill)[aria-pressed="true"],
  [data-runtime-composer-search-tool="true"]:not(:has([data-runtime-composer-search-tool="true"])):is(button, [role="button"], a, [aria-label], .btn-pill)[data-active="true"],
  [data-runtime-composer-search-tool="true"]:not(:has([data-runtime-composer-search-tool="true"])):is(button, [role="button"], a, [aria-label], .btn-pill)[data-state="active"],
  [data-runtime-knowledge-base-entry-button="true"][aria-pressed="true"],
  [data-runtime-knowledge-base-entry-button="true"][data-active="true"],
  [data-runtime-plugin-tool-entry-button="true"][aria-expanded="true"],
  [data-runtime-plugin-tool-entry-button="true"][data-active="true"]
) {
  box-shadow: var(--runtime-composer-tool-active-shadow) !important;
  border-radius: 999px !important;
  outline: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  [data-runtime-composer-search-tool="true"]:not(:has([data-runtime-composer-search-tool="true"])):is(button, [role="button"], a, [aria-label], .btn-pill)[aria-pressed="false"]:active,
  [data-runtime-composer-search-tool="true"]:not(:has([data-runtime-composer-search-tool="true"])):is(button, [role="button"], a, [aria-label], .btn-pill)[aria-pressed="false"]:focus,
  [data-runtime-composer-search-tool="true"]:not(:has([data-runtime-composer-search-tool="true"])):is(button, [role="button"], a, [aria-label], .btn-pill)[aria-pressed="false"]:focus-visible
) {
  box-shadow: var(--runtime-composer-tool-shadow) !important;
  outline: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] > [data-runtime-composer-search-tool="true"]:has([data-runtime-composer-search-tool="true"]) {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  filter: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  [data-runtime-composer-search-tool="true"]:not(:has([data-runtime-composer-search-tool="true"])):is(button, [role="button"], a, [aria-label], .btn-pill),
  [data-runtime-knowledge-base-entry-button="true"],
  [data-runtime-plugin-tool-entry-button="true"]
):is(:focus, :focus-visible, :active, [aria-pressed="true"], [aria-expanded="true"], [data-active="true"], [data-state="active"]) {
  border-radius: 999px !important;
  outline: 0 !important;
  outline-offset: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] :is(
  [data-runtime-composer-search-tool="true"]:not(:has([data-runtime-composer-search-tool="true"])):is(button, [role="button"], a, [aria-label], .btn-pill)
):is([aria-pressed="true"], [data-active="true"], [data-state="active"]) {
  box-shadow: var(--runtime-composer-tool-active-shadow) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] > [data-runtime-composer-search-tool="true"]:has([data-runtime-composer-search-tool="true"]),
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] > [data-runtime-composer-search-tool="true"]:has([data-runtime-composer-search-tool="true"]):is(:hover, :focus, :focus-visible, :active, [aria-pressed="true"], [data-active="true"], [data-state="active"]) {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  outline: 0 !important;
  outline-offset: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [data-runtime-composer-search-tool="true"]:not(:has([data-runtime-composer-search-tool="true"])):is(button, [role="button"], a, [aria-label], .btn-pill):is([aria-pressed="true"], [data-active="true"], [data-state="active"]) {
  box-shadow: var(--runtime-composer-tool-active-shadow) !important;
  filter: none !important;
  outline: 0 !important;
  outline-offset: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"] [data-runtime-composer-tools="true"] [data-runtime-composer-search-tool="true"]:not(:has([data-runtime-composer-search-tool="true"])):is(button, [role="button"], a, [aria-label], .btn-pill)[aria-pressed="false"] {
  box-shadow: var(--runtime-composer-tool-shadow) !important;
  filter: none !important;
  outline: 0 !important;
  outline-offset: 0 !important;
}

/* -------------------
 * 91. Chat Search Tool Result Surface
 * ------------------- */

html body[data-runtime-shell-ready="true"] {
  --runtime-chat-tool-card-surface: var(--runtime-chat-content-surface, var(--runtime-surface-panel, #ffffff)) !important;
  --runtime-chat-tool-card-row-hover: var(--runtime-chat-content-chip-bg, rgba(15, 23, 42, 0.055)) !important;
}

html.dark body[data-runtime-shell-ready="true"] {
  --runtime-chat-tool-card-surface: var(--runtime-chat-content-surface, var(--runtime-canvas-bg, #101010)) !important;
  --runtime-chat-tool-card-row-hover: var(--runtime-chat-content-chip-bg, rgba(255, 255, 255, 0.075)) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .tool-card-wrapper .tool-card-animated,
  .tool-card-wrapper .tool-card-animated[class*="bg-gray-50"],
  .tool-card-wrapper .tool-card-animated[class*="dark:bg-gray-800"],
  .tool-card-wrapper > div[class*="bg-gray-50"],
  .tool-card-wrapper > div[class*="dark:bg-gray-800"],
  .tool-card-wrapper > div.rounded-lg[class*="border"]
) {
  background: var(--runtime-chat-tool-card-surface) !important;
  background-color: var(--runtime-chat-tool-card-surface) !important;
  background-image: none !important;
  border: 0 !important;
  border-color: transparent !important;
  box-shadow: var(--runtime-shadow-selected) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .tool-card-wrapper > div > button,
  .tool-card-wrapper > div > button:hover,
  .tool-card-wrapper > div > button:focus,
  .tool-card-wrapper > div > button:focus-visible,
  .tool-card-wrapper > div > button:active,
  .tool-card-wrapper > div .overflow-hidden,
  .tool-card-wrapper > div .px-3,
  .tool-card-wrapper > div .pt-0,
  .tool-card-wrapper > div .pb-3,
  .tool-card-wrapper > div .flex.flex-col.gap-2,
  .tool-card-wrapper > div .text-sm,
  .tool-card-wrapper .tool-card-animated > button,
  .tool-card-wrapper .tool-card-animated > button:hover,
  .tool-card-wrapper .tool-card-animated > button:focus,
  .tool-card-wrapper .tool-card-animated > button:focus-visible,
  .tool-card-wrapper .tool-card-animated > button:active,
  .tool-card-wrapper .tool-card-animated .overflow-hidden,
  .tool-card-wrapper .tool-card-animated .px-3,
  .tool-card-wrapper .tool-card-animated .pt-0,
  .tool-card-wrapper .tool-card-animated .pb-3,
  .tool-card-wrapper .tool-card-animated .flex.flex-col.gap-2,
  .tool-card-wrapper .tool-card-animated .text-sm
) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border-color: transparent !important;
}

html body[data-runtime-shell-ready="true"] .tool-card-wrapper :is(
  .flex.flex-col.gap-1.max-h-96.overflow-y-auto.overflow-x-hidden.custom-scrollbar,
  .max-h-96.overflow-y-auto.overflow-x-hidden.custom-scrollbar,
  .text-gray-700.dark\:text-gray-300.max-h-96.overflow-y-auto.overflow-x-hidden.custom-scrollbar
),
html body[data-runtime-shell-ready="true"] .tool-card-wrapper .tool-card-animated :is(
  .flex.flex-col.gap-1.max-h-96.overflow-y-auto.overflow-x-hidden.custom-scrollbar,
  .max-h-96.overflow-y-auto.overflow-x-hidden.custom-scrollbar
) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body[data-runtime-shell-ready="true"] .tool-card-wrapper :is(
  a,
  a:hover,
  a:focus,
  a:focus-visible,
  a:active,
  [class*="group/link"],
  [class*="group/file"]
),
html body[data-runtime-shell-ready="true"] .tool-card-wrapper .tool-card-animated :is(
  a,
  a:hover,
  a:focus,
  a:focus-visible,
  a:active
) {
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] .tool-card-wrapper a,
html body[data-runtime-shell-ready="true"] .tool-card-wrapper .tool-card-animated a {
  background: transparent !important;
  background-color: transparent !important;
}

html body[data-runtime-shell-ready="true"] .tool-card-wrapper :is(a, [class*="group/link"], [class*="group/file"]):is(:hover, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"] .tool-card-wrapper .tool-card-animated a:is(:hover, :focus, :focus-visible) {
  background: var(--runtime-chat-tool-card-row-hover) !important;
  background-color: var(--runtime-chat-tool-card-row-hover) !important;
}

/* -------------------
 * 92. Dark Composer And Bubble Shadow Rings
 * ------------------- */

html.dark body[data-runtime-shell-ready="true"] {
  --runtime-dark-flat-ring-color: rgba(255, 255, 255, 0.07) !important;
  --runtime-dark-message-bubble-shadow: 0 0 0 2px var(--runtime-dark-flat-ring-color) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .ai-message .message-content,
  .ai-message .markdown-body:not(.message-content .markdown-body),
  .user-message .message-content,
  .user-message .rounded-2xl:not(.message-content .rounded-2xl),
  #image-wrapper .markdown-body.text-gray-950.dark\:text-gray-100:not(:empty),
  #image-wrapper .markdown-body.markdown-body-generate:not(:empty),
  #image-wrapper .p-3.rounded-2xl.text-base.bg-opacity.dark\:bg-gray-750.break-words.whitespace-pre-wrap.text-gray-950.dark\:text-gray-100
),
html.dark body[data-runtime-shell-ready="true"] #image-wrapper .flex.w-full.my-2.pb-3.items-start.flex-row :is(
  .markdown-body,
  .rounded-2xl.text-base.break-words.whitespace-pre-wrap
),
html.dark body[data-runtime-shell-ready="true"] #image-wrapper :is(
  .markdown-body.markdown-body-generate,
  .markdown-body.text-gray-950.dark\:text-gray-100,
  .p-3.rounded-2xl.text-base.bg-opacity.dark\:bg-gray-750.break-words.whitespace-pre-wrap.text-gray-950.dark\:text-gray-100,
  .rounded-2xl.text-base.break-words.whitespace-pre-wrap
):not(:empty) {
  --runtime-shadow-selected: var(--runtime-dark-message-bubble-shadow) !important;
}

html body[data-runtime-shell-ready="true"] .ai-message .message-content .markdown-body:not(#runtime-single-layer-inner-ring-lock),
html body[data-runtime-shell-ready="true"] .user-message .message-content .rounded-2xl:not(#runtime-single-layer-inner-ring-lock),
html.dark body[data-runtime-shell-ready="true"] .ai-message .message-content .markdown-body:not(#runtime-single-layer-inner-ring-lock),
html.dark body[data-runtime-shell-ready="true"] .user-message .message-content .rounded-2xl:not(#runtime-single-layer-inner-ring-lock) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] #image-wrapper .ai-message .message-content .markdown-body:not(#runtime-single-layer-inner-ring-lock),
html body[data-runtime-shell-ready="true"] #image-wrapper .user-message .message-content .rounded-2xl:not(#runtime-single-layer-inner-ring-lock),
html.dark body[data-runtime-shell-ready="true"] #image-wrapper .ai-message .message-content .markdown-body:not(#runtime-single-layer-inner-ring-lock),
html.dark body[data-runtime-shell-ready="true"] #image-wrapper .user-message .message-content .rounded-2xl:not(#runtime-single-layer-inner-ring-lock) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-card.runtime-knowledge-card.runtime-knowledge-card,
html body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-card.runtime-knowledge-card.runtime-knowledge-card:is(:hover, :active, :focus-within),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-card.runtime-knowledge-card.runtime-knowledge-card,
html.dark body[data-runtime-shell-ready="true"] [data-runtime-knowledge-base-dialog="true"] div.runtime-knowledge-card.runtime-knowledge-card.runtime-knowledge-card:is(:hover, :active, :focus-within) {
  box-shadow: none !important;
  transform: none !important;
}

/* -------------------
 * 93. Final Single Shadow Source Lock
 * ------------------- */

html body[data-runtime-shell-ready="true"] {
  --runtime-composer-polish-frame-shadow: 0 0 0 2px rgba(15, 23, 42, 0.08) !important;
  --runtime-message-bubble-frame-shadow: 0 0 0 2px rgba(15, 23, 42, 0.08) !important;
}

html.dark body[data-runtime-shell-ready="true"] {
  --runtime-composer-polish-frame-shadow: 0 0 0 2px rgba(255, 255, 255, 0.07) !important;
  --runtime-message-bubble-frame-shadow: 0 0 0 2px rgba(255, 255, 255, 0.07) !important;
  --runtime-dark-message-bubble-shadow: var(--runtime-message-bubble-frame-shadow) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"]:not(#runtime-composer-card-polish-lock),
html body[data-runtime-shell-ready="true"] :is(
  .ai-message .message-content,
  .ai-message .markdown-body:not(.message-content .markdown-body),
  .user-message .message-content,
  .user-message .rounded-2xl:not(.message-content .rounded-2xl),
  #image-wrapper .markdown-body.text-gray-950.dark\:text-gray-100:not(:empty),
  #image-wrapper .markdown-body.markdown-body-generate:not(:empty),
  #image-wrapper .p-3.rounded-2xl.text-base.bg-opacity.dark\:bg-gray-750.break-words.whitespace-pre-wrap.text-gray-950.dark\:text-gray-100
),
html body[data-runtime-shell-ready="true"] #image-wrapper .flex.w-full.my-2.pb-3.items-start.flex-row :is(
  .markdown-body,
  .rounded-2xl.text-base.break-words.whitespace-pre-wrap
),
html body[data-runtime-shell-ready="true"] #image-wrapper :is(
  .markdown-body.markdown-body-generate,
  .markdown-body.text-gray-950.dark\:text-gray-100,
  .p-3.rounded-2xl.text-base.bg-opacity.dark\:bg-gray-750.break-words.whitespace-pre-wrap.text-gray-950.dark\:text-gray-100,
  .rounded-2xl.text-base.break-words.whitespace-pre-wrap
):not(:empty) {
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-composer-card="true"]:not(#runtime-composer-card-polish-lock) {
  box-shadow: var(--runtime-composer-polish-frame-shadow) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .ai-message .message-content,
  .ai-message .markdown-body:not(.message-content .markdown-body),
  .user-message .message-content,
  .user-message .rounded-2xl:not(.message-content .rounded-2xl),
  #image-wrapper .markdown-body.text-gray-950.dark\:text-gray-100:not(:empty),
  #image-wrapper .markdown-body.markdown-body-generate:not(:empty),
  #image-wrapper .p-3.rounded-2xl.text-base.bg-opacity.dark\:bg-gray-750.break-words.whitespace-pre-wrap.text-gray-950.dark\:text-gray-100
),
html body[data-runtime-shell-ready="true"] #image-wrapper .flex.w-full.my-2.pb-3.items-start.flex-row :is(
  .markdown-body,
  .rounded-2xl.text-base.break-words.whitespace-pre-wrap
),
html body[data-runtime-shell-ready="true"] #image-wrapper :is(
  .markdown-body.markdown-body-generate,
  .markdown-body.text-gray-950.dark\:text-gray-100,
  .p-3.rounded-2xl.text-base.bg-opacity.dark\:bg-gray-750.break-words.whitespace-pre-wrap.text-gray-950.dark\:text-gray-100,
  .rounded-2xl.text-base.break-words.whitespace-pre-wrap
):not(:empty) {
  box-shadow: var(--runtime-message-bubble-frame-shadow) !important;
}

/* -------------------
 * 94. Runtime Settings Dialog Surface Unification
 * ------------------- */

html body[data-runtime-shell-ready="true"] {
  --runtime-settings-dialog-surface: #ffffff !important;
  --runtime-settings-dialog-overlay: rgba(17, 17, 17, 0.42) !important;
  --runtime-settings-dialog-active-surface: rgba(17, 17, 17, 0.05) !important;
  --runtime-settings-dialog-control-surface: rgba(17, 17, 17, 0.035) !important;
  --runtime-settings-dialog-primary-surface: var(--runtime-accent-primary-surface) !important;
  --runtime-settings-dialog-primary-hover: var(--runtime-accent-primary-hover) !important;
  --runtime-settings-dialog-panel-shadow: 0 0 0 2px rgba(15, 23, 42, 0.08) !important;
  --runtime-settings-dialog-card-shadow: 0 0 0 2px rgba(15, 23, 42, 0.06) !important;
  --runtime-settings-dialog-control-shadow: 0 0 0 2px rgba(15, 23, 42, 0.07) !important;
}

html.dark body[data-runtime-shell-ready="true"] {
  --runtime-settings-dialog-surface: rgb(32, 32, 32) !important;
  --runtime-settings-dialog-overlay: rgba(17, 17, 17, 0.62) !important;
  --runtime-settings-dialog-active-surface: rgba(255, 255, 255, 0.06) !important;
  --runtime-settings-dialog-control-surface: rgba(255, 255, 255, 0.045) !important;
  --runtime-settings-dialog-primary-surface: var(--runtime-accent-primary-surface) !important;
  --runtime-settings-dialog-primary-hover: var(--runtime-accent-primary-hover) !important;
  --runtime-settings-dialog-panel-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06) !important;
  --runtime-settings-dialog-card-shadow: 0 0 0 2px rgba(255, 255, 255, 0.055) !important;
  --runtime-settings-dialog-control-shadow: 0 0 0 2px rgba(255, 255, 255, 0.055) !important;
}

html body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[55\].flex.items-center.justify-center:has(> .bg-white.dark\:bg-gray-750.flex.flex-col.h-\[80vh\] > .flex.flex-grow > .w-1\/5):not([data-runtime-settings-dialog-overlay="true"]) {
  background: var(--runtime-settings-dialog-overlay) !important;
  background-color: var(--runtime-settings-dialog-overlay) !important;
  background-image: none !important;
}

html body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[55\].flex.items-center.justify-center:has(> .bg-white.dark\:bg-gray-750.flex.flex-col.h-\[80vh\] > .flex.flex-grow > .w-1\/5):not([data-runtime-settings-dialog-overlay="true"]) > .bg-white.dark\:bg-gray-750.flex.flex-col.h-\[80vh\],
html body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[55\].flex.items-center.justify-center:has(> .bg-white.dark\:bg-gray-750.flex.flex-col.h-\[80vh\] > .flex.flex-grow > .w-1\/5):not([data-runtime-settings-dialog-overlay="true"]) > .bg-white.dark\:bg-gray-750.flex.flex-col.h-\[80vh\] > .flex.flex-grow,
html body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[55\].flex.items-center.justify-center:has(> .bg-white.dark\:bg-gray-750.flex.flex-col.h-\[80vh\] > .flex.flex-grow > .w-1\/5):not([data-runtime-settings-dialog-overlay="true"]) > .bg-white.dark\:bg-gray-750.flex.flex-col.h-\[80vh\] > .flex.flex-grow > .w-1\/5.bg-white.dark\:bg-gray-750,
html body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[55\].flex.items-center.justify-center:has(> .bg-white.dark\:bg-gray-750.flex.flex-col.h-\[80vh\] > .flex.flex-grow > .w-1\/5):not([data-runtime-settings-dialog-overlay="true"]) > .bg-white.dark\:bg-gray-750.flex.flex-col.h-\[80vh\] > .flex.flex-grow > .w-4\/5.bg-white.dark\:bg-gray-750,
html body[data-runtime-shell-ready="true"] .fixed.inset-0.z-\[55\].flex.items-center.justify-center:has(> .bg-white.dark\:bg-gray-750.flex.flex-col.h-\[80vh\] > .flex.flex-grow > .w-1\/5):not([data-runtime-settings-dialog-overlay="true"]) > .bg-white.dark\:bg-gray-750.flex.flex-col.h-\[80vh\] > .flex.flex-grow > .w-4\/5.bg-white.dark\:bg-gray-750 :is(.p-4.bg-white.dark\:bg-gray-700.rounded-lg, .p-2.bg-white.dark\:bg-gray-700.rounded-lg, .p-6.bg-white.dark\:bg-gray-750.rounded-lg, .ring-1.rounded-lg.bg-white, .rounded-lg[class*="border"], .rounded-lg[class*="ring-"]) {
  background: var(--runtime-settings-dialog-surface) !important;
  background-color: var(--runtime-settings-dialog-surface) !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  transition-property: opacity, transform !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-overlay="true"] {
  background: var(--runtime-settings-dialog-overlay) !important;
  background-color: var(--runtime-settings-dialog-overlay) !important;
  background-image: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-settings-dialog-panel="true"],
  [data-runtime-settings-dialog-layout="true"],
  [data-runtime-settings-dialog-sidebar="true"],
  [data-runtime-settings-dialog-content="true"],
  [data-runtime-settings-dialog-card="true"],
  [data-runtime-settings-dialog-surface="true"]
) {
  background: var(--runtime-settings-dialog-surface) !important;
  background-color: var(--runtime-settings-dialog-surface) !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] {
  box-shadow: var(--runtime-settings-dialog-panel-shadow) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-settings-dialog-layout="true"],
  [data-runtime-settings-dialog-sidebar="true"],
  [data-runtime-settings-dialog-content="true"]
) {
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-card="true"] {
  background: var(--runtime-settings-dialog-surface) !important;
  background-color: var(--runtime-settings-dialog-surface) !important;
  background-image: none !important;
  box-shadow: var(--runtime-settings-dialog-card-shadow) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-card="true"][data-runtime-settings-dialog-card="true"] {
  background: var(--runtime-settings-dialog-surface) !important;
  background-color: var(--runtime-settings-dialog-surface) !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: var(--runtime-settings-dialog-card-shadow) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] :is(
  .bg-white,
  .dark\:bg-gray-700,
  .dark\:bg-gray-750,
  .dark\:bg-gray-800,
  .md-editor,
  .md-editor-content,
  .md-editor-preview-wrapper,
  .md-editor-preview,
  .md-editor-input-wrapper,
  .md-editor-input,
  .md-editor-footer,
  .rounded-lg[class*="border"],
  .border[class*="dark:border-gray-700"],
  .avatar
) {
  background: var(--runtime-settings-dialog-surface) !important;
  background-color: var(--runtime-settings-dialog-surface) !important;
  background-image: none !important;
  border-color: transparent !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] :is(
  input,
  textarea,
  select,
  .input,
  .select
) {
  background: var(--runtime-settings-dialog-control-surface) !important;
  background-color: var(--runtime-settings-dialog-control-surface) !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] :is(
  input,
  textarea,
  select,
  .input,
  .select
):is(:hover, :focus, :focus-visible, :active) {
  background: var(--runtime-settings-dialog-control-surface) !important;
  background-color: var(--runtime-settings-dialog-control-surface) !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
  outline: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] :is(
  button,
  [role="button"],
  .btn,
  .btn-icon
) {
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
  transition: background-color 0.12s ease, box-shadow 0.12s ease, color 0.12s ease !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] :is(
  button,
  [role="button"],
  .btn,
  .btn-icon
):not(.btn-primary):not([data-runtime-settings-dialog-sidebar-item="true"]):not([data-runtime-settings-dialog-active="true"]) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] :is(
  button,
  [role="button"],
  .btn,
  .btn-icon
):not(.btn-primary):not([data-runtime-settings-dialog-sidebar-item="true"]):is(:hover, :focus-visible, :active) {
  background: var(--runtime-settings-dialog-active-surface) !important;
  background-color: var(--runtime-settings-dialog-active-surface) !important;
  background-image: none !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] :is(.btn-primary, button.btn-primary) {
  background: var(--runtime-settings-dialog-primary-surface) !important;
  background-color: var(--runtime-settings-dialog-primary-surface) !important;
  background-image: none !important;
  border: 0 !important;
  color: var(--runtime-accent-primary-text) !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] :is(.btn-primary, button.btn-primary):is(:hover, :focus-visible, :active) {
  background: var(--runtime-settings-dialog-primary-hover) !important;
  background-color: var(--runtime-settings-dialog-primary-hover) !important;
  background-image: none !important;
  color: var(--runtime-accent-primary-text) !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] :is(
  button.bg-primary-600,
  button[class*="bg-primary-600"],
  [role="button"].bg-primary-600,
  [role="button"][class*="bg-primary-600"]
) {
  background: var(--runtime-settings-dialog-primary-surface) !important;
  background-color: var(--runtime-settings-dialog-primary-surface) !important;
  background-image: none !important;
  border-color: transparent !important;
  color: var(--runtime-accent-primary-text) !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] :is(
  button.bg-primary-600,
  button[class*="bg-primary-600"],
  [role="button"].bg-primary-600,
  [role="button"][class*="bg-primary-600"]
):is(:hover, :focus-visible, :active) {
  background: var(--runtime-settings-dialog-primary-hover) !important;
  background-color: var(--runtime-settings-dialog-primary-hover) !important;
  background-image: none !important;
  color: var(--runtime-accent-primary-text) !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"][data-runtime-settings-dialog-panel="true"] :is(
  button,
  [role="button"],
  .btn,
  .btn-icon,
  input,
  textarea,
  select,
  .input,
  .select
) {
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"][data-runtime-settings-dialog-panel="true"] :is(
  button:not(.btn-primary):not([class*="bg-primary-600"]),
  [role="button"]:not(.btn-primary):not([class*="bg-primary-600"]),
  .btn:not(.btn-primary):not([class*="bg-primary-600"]),
  .btn-icon
):not([data-runtime-settings-dialog-sidebar-item="true"]):is(:hover, :focus-visible, :active) {
  background: var(--runtime-settings-dialog-active-surface) !important;
  background-color: var(--runtime-settings-dialog-active-surface) !important;
  background-image: none !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"][data-runtime-settings-dialog-panel="true"] :is(
  .btn-primary,
  button.btn-primary,
  button.bg-primary-600,
  button[class*="bg-primary-600"],
  [role="button"].bg-primary-600,
  [role="button"][class*="bg-primary-600"]
) {
  background: var(--runtime-settings-dialog-primary-surface) !important;
  background-color: var(--runtime-settings-dialog-primary-surface) !important;
  background-image: none !important;
  border-color: transparent !important;
  color: var(--runtime-accent-primary-text) !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"][data-runtime-settings-dialog-panel="true"] :is(
  .btn-primary,
  button.btn-primary,
  button.bg-primary-600,
  button[class*="bg-primary-600"],
  [role="button"].bg-primary-600,
  [role="button"][class*="bg-primary-600"]
):is(:hover, :focus-visible, :active) {
  background: var(--runtime-settings-dialog-primary-hover) !important;
  background-color: var(--runtime-settings-dialog-primary-hover) !important;
  background-image: none !important;
  color: var(--runtime-accent-primary-text) !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"][data-runtime-settings-dialog-panel="true"] :is(
  button,
  [role="button"],
  .btn,
  .btn-icon
)[data-runtime-settings-dialog-control="true"][data-runtime-settings-dialog-control="true"] {
  border: 0 !important;
  outline: 0 !important;
  background-image: none !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"][data-runtime-settings-dialog-panel="true"] :is(
  button,
  [role="button"],
  .btn,
  .btn-icon
)[data-runtime-settings-dialog-control="true"][data-runtime-settings-dialog-control="true"]:is(:hover, :focus, :focus-visible, :active) {
  border: 0 !important;
  outline: 0 !important;
  background: var(--runtime-settings-dialog-active-surface) !important;
  background-color: var(--runtime-settings-dialog-active-surface) !important;
  background-image: none !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"][data-runtime-settings-dialog-panel="true"] :is(
  button.btn-primary,
  button.bg-primary-600,
  button[class*="bg-primary-600"]
)[data-runtime-settings-dialog-control="true"][data-runtime-settings-dialog-control="true"]:is(:hover, :focus, :focus-visible, :active) {
  background: var(--runtime-settings-dialog-primary-hover) !important;
  background-color: var(--runtime-settings-dialog-primary-hover) !important;
  color: var(--runtime-accent-primary-text) !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"][data-runtime-settings-dialog-panel="true"] .bg-primary-600.text-white.hover\:bg-gray-200.dark\:hover\:bg-gray-700.mx-auto.flex.h-8.w-8.items-center.justify-center.rounded-full,
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"][data-runtime-settings-dialog-panel="true"] .bg-primary-600.text-white.hover\:bg-gray-200.dark\:hover\:bg-gray-700.mx-auto.flex.h-8.w-8.items-center.justify-center.rounded-full:is(:hover, :focus, :focus-visible, :active) {
  background: var(--runtime-settings-dialog-primary-surface) !important;
  background-color: var(--runtime-settings-dialog-primary-surface) !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  color: #ffffff !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] :is(
  .overflow-y-auto:has(.menu-items),
  [data-runtime-settings-dialog-card="true"]:has(.menu-items),
  .grid:has(.menu-items),
  .flex.items-center.justify-between:has(.menu-items),
  .relative:has(> .menu > .menu-items),
  .menu:has(> .menu-items)
) {
  overflow: visible !important;
  position: relative !important;
  z-index: 2147483000 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] .menu:has(> .menu-items) > .menu-items {
  z-index: 2147483001 !important;
  background: var(--runtime-settings-dialog-surface) !important;
  background-color: var(--runtime-settings-dialog-surface) !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: var(--runtime-settings-dialog-panel-shadow) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: thin !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] [data-runtime-settings-dialog-menu-layer="true"] {
  overflow: visible !important;
  position: relative !important;
  z-index: 2147483000 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] [data-runtime-settings-dialog-menu="true"] {
  z-index: 2147483001 !important;
  background: var(--runtime-settings-dialog-surface) !important;
  background-color: var(--runtime-settings-dialog-surface) !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: var(--runtime-settings-dialog-panel-shadow) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: thin !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] [data-runtime-settings-dialog-menu="true"] :is(.menu-item, [role="menuitem"]) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--runtime-color-text-primary) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] [data-runtime-settings-dialog-menu="true"] :is(.menu-item, [role="menuitem"]):not(.menu-item-active):not(.active):not(.selected):not([aria-selected="true"]):not([aria-pressed="true"]):is(:hover, :focus, :focus-visible, :active) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--runtime-color-text-primary) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] [data-runtime-settings-dialog-menu="true"] :is(
  .menu-item-active,
  .active,
  .selected,
  [aria-selected="true"],
  [aria-pressed="true"]
) {
  background: var(--runtime-settings-dialog-active-surface) !important;
  background-color: var(--runtime-settings-dialog-active-surface) !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] [data-runtime-settings-dialog-close="true"] {
  width: 36px !important;
  height: 36px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] [data-runtime-settings-dialog-close="true"]:is(:hover, :focus-visible, :active) {
  border-radius: 14px !important;
  background: var(--runtime-settings-dialog-active-surface) !important;
  background-color: var(--runtime-settings-dialog-active-surface) !important;
  background-image: none !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] :is(
  .btn-danger,
  button.btn-danger,
  [role="button"].btn-danger,
  button[class*="btn-danger"],
  [role="button"][class*="btn-danger"]
) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  color: var(--runtime-state-danger-text) !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] :is(
  .btn-danger,
  button.btn-danger,
  [role="button"].btn-danger,
  button[class*="btn-danger"],
  [role="button"][class*="btn-danger"]
):is(:hover, :focus-visible, :active) {
  background: var(--runtime-state-danger-bg) !important;
  background-color: var(--runtime-state-danger-bg) !important;
  background-image: none !important;
  color: var(--runtime-state-danger-text) !important;
  box-shadow: var(--runtime-settings-dialog-control-shadow) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] [data-runtime-settings-dialog-badge="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] .js-package-discount-badge {
  background: var(--runtime-accent-primary-soft) !important;
  background-color: var(--runtime-accent-primary-soft) !important;
  background-image: none !important;
  border: 0 !important;
  color: var(--runtime-accent-primary-text-soft) !important;
  box-shadow: var(--runtime-accent-primary-shadow) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] :is(
  .md-editor,
  .md-editor-preview,
  .md-editor-preview-wrapper,
  .md-editor-content,
  .md-editor-input-wrapper,
  .md-editor-input,
  .markdown-body,
  .md-editor-preview :is(h1, h2, h3, h4, h5, h6, p, li, blockquote, td, th, span, strong, em)
) {
  color: var(--runtime-color-text-primary) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] .md-editor-preview :is(pre, code, blockquote, table, thead, tbody, tr, td, th) {
  background: var(--runtime-settings-dialog-surface) !important;
  background-color: var(--runtime-settings-dialog-surface) !important;
  background-image: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"][data-runtime-settings-dialog-panel="true"] .rounded-lg.cursor-pointer.group[data-runtime-settings-dialog-sidebar-item="true"][data-runtime-settings-dialog-sidebar-item="true"][data-runtime-settings-dialog-active="true"][data-runtime-settings-dialog-active="true"][class*="dark:bg-gray-700"][class*="dark:text-primary-400"],
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"][data-runtime-settings-dialog-panel="true"] .rounded-lg.cursor-pointer.group[data-runtime-settings-dialog-sidebar-item="true"][data-runtime-settings-dialog-sidebar-item="true"][data-runtime-settings-dialog-active="true"][data-runtime-settings-dialog-active="true"][class*="dark:bg-gray-700"][class*="dark:text-primary-400"]:is(:hover, :focus, :focus-visible, :active) {
  background: var(--runtime-settings-dialog-active-surface) !important;
  background-color: var(--runtime-settings-dialog-active-surface) !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: var(--runtime-settings-dialog-card-shadow) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"][data-runtime-settings-dialog-panel="true"] .rounded-lg.cursor-pointer.group[data-runtime-settings-dialog-sidebar-item="true"][data-runtime-settings-dialog-sidebar-item="true"]:not([data-runtime-settings-dialog-active="true"]):is(:hover, :focus, :focus-visible, :active) {
  background: var(--runtime-settings-dialog-active-surface) !important;
  background-color: var(--runtime-settings-dialog-active-surface) !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-sidebar-item="true"] {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-sidebar-item="true"][data-runtime-settings-dialog-active="true"] {
  background: var(--runtime-settings-dialog-active-surface) !important;
  background-color: var(--runtime-settings-dialog-active-surface) !important;
  box-shadow: var(--runtime-settings-dialog-card-shadow) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-sidebar-item="true"][data-runtime-settings-dialog-sidebar-item="true"][data-runtime-settings-dialog-active="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-sidebar-item="true"][data-runtime-settings-dialog-sidebar-item="true"][data-runtime-settings-dialog-active="true"]:is(:hover, :focus, :focus-visible, :active) {
  background: var(--runtime-settings-dialog-active-surface) !important;
  background-color: var(--runtime-settings-dialog-active-surface) !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: var(--runtime-settings-dialog-card-shadow) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-sidebar-item="true"][data-runtime-settings-dialog-sidebar-item="true"][data-runtime-settings-dialog-active="true"][data-runtime-settings-dialog-active="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-sidebar-item="true"][data-runtime-settings-dialog-sidebar-item="true"][data-runtime-settings-dialog-active="true"][data-runtime-settings-dialog-active="true"]:is(:hover, :focus, :focus-visible, :active) {
  background: var(--runtime-settings-dialog-active-surface) !important;
  background-color: var(--runtime-settings-dialog-active-surface) !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: var(--runtime-settings-dialog-card-shadow) !important;
  transform: none !important;
}

/* -------------------
 * 94.1 Runtime Settings Theme Switch
 * ------------------- */

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] button[role="switch"][data-runtime-settings-dialog-control="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] button[role="switch"][data-runtime-settings-dialog-control="true"]:is(:hover, :focus, :focus-visible, :active) {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 48px !important;
  width: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  height: 26px !important;
  min-height: 26px !important;
  max-height: 26px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  overflow: visible !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] button[role="switch"][data-runtime-settings-dialog-control="true"]::before {
  content: "" !important;
  position: absolute !important;
  inset: 2px !important;
  border-radius: 999px !important;
  background: rgba(15, 23, 42, 0.12) !important;
  background-color: rgba(15, 23, 42, 0.12) !important;
  background-image: none !important;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08) !important;
  transition: background-color 160ms ease, box-shadow 160ms ease !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] button[role="switch"][data-runtime-settings-dialog-control="true"]::before {
  background: rgba(255, 255, 255, 0.12) !important;
  background-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.085) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] button[role="switch"][data-runtime-settings-dialog-control="true"][aria-checked="true"]::before,
html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] button[role="switch"][data-runtime-settings-dialog-control="true"]:has(> [class*="translate-x-5"])::before {
  background: var(--runtime-settings-dialog-primary-surface, rgb(88, 102, 122)) !important;
  background-color: var(--runtime-settings-dialog-primary-surface, rgb(88, 102, 122)) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] button[role="switch"][data-runtime-settings-dialog-control="true"]:is(:hover, :focus-visible)::before {
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.12), 0 0 0 3px rgba(15, 23, 42, 0.055) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] button[role="switch"][data-runtime-settings-dialog-control="true"]:is(:hover, :focus-visible)::before {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 0 3px rgba(255, 255, 255, 0.06) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] button[role="switch"][data-runtime-settings-dialog-control="true"] > span:not(:last-child) {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  opacity: 0 !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] button[role="switch"][data-runtime-settings-dialog-control="true"] > span:last-child {
  position: absolute !important;
  top: 4px !important;
  left: 4px !important;
  right: auto !important;
  display: block !important;
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.24) !important;
  transform: translateX(0) !important;
  transition: transform 180ms ease, background-color 160ms ease, box-shadow 160ms ease !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] button[role="switch"][data-runtime-settings-dialog-control="true"] > span:last-child {
  background: rgba(245, 247, 250, 0.96) !important;
  background-color: rgba(245, 247, 250, 0.96) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.42) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] button[role="switch"][data-runtime-settings-dialog-control="true"][aria-checked="true"] > span:last-child,
html body[data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"] button[role="switch"][data-runtime-settings-dialog-control="true"]:has(> [class*="translate-x-5"]) > span:last-child {
  transform: translateX(22px) !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"][data-runtime-settings-dialog-panel="true"] button[role="switch"][data-runtime-settings-dialog-control="true"][data-runtime-settings-dialog-control="true"],
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"][data-runtime-settings-dialog-panel="true"] button[role="switch"][data-runtime-settings-dialog-control="true"][data-runtime-settings-dialog-control="true"]:is(:hover, :focus, :focus-visible, :active) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

/* -------------------
 * 95. Runtime Accent Normalization
 * ------------------- */

html body[data-runtime-shell-ready="true"] :is(
  .btn-primary,
  button.btn-primary,
  a.btn-primary,
  [role="button"].btn-primary,
  .bg-primary-500,
  .bg-primary-600,
  .bg-primary-700,
  button[class*="bg-primary-500"],
  button[class*="bg-primary-600"],
  button[class*="bg-primary-700"],
  [role="button"][class*="bg-primary-500"],
  [role="button"][class*="bg-primary-600"],
  [role="button"][class*="bg-primary-700"]
):not(.btn-send):not([data-runtime-conversation-item="true"]):not([data-runtime-sidebar-tab-button="true"]) {
  background: var(--runtime-accent-primary-surface) !important;
  background-color: var(--runtime-accent-primary-surface) !important;
  background-image: none !important;
  border-color: transparent !important;
  color: var(--runtime-accent-primary-text) !important;
  box-shadow: var(--runtime-accent-primary-shadow) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .btn-primary,
  button.btn-primary,
  a.btn-primary,
  [role="button"].btn-primary,
  .bg-primary-500,
  .bg-primary-600,
  .bg-primary-700,
  button[class*="bg-primary-500"],
  button[class*="bg-primary-600"],
  button[class*="bg-primary-700"],
  [role="button"][class*="bg-primary-500"],
  [role="button"][class*="bg-primary-600"],
  [role="button"][class*="bg-primary-700"]
):not(.btn-send):not([data-runtime-conversation-item="true"]):not([data-runtime-sidebar-tab-button="true"]):is(:hover, :focus-visible, :active) {
  background: var(--runtime-accent-primary-hover) !important;
  background-color: var(--runtime-accent-primary-hover) !important;
  background-image: none !important;
  color: var(--runtime-accent-primary-text) !important;
  box-shadow: var(--runtime-accent-primary-shadow) !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .text-primary-400,
  .text-primary-500,
  .text-primary-600,
  .dark\:text-primary-400,
  .dark\:text-primary-500,
  .dark\:text-primary-600,
  [class*="text-primary-400"],
  [class*="text-primary-500"],
  [class*="text-primary-600"]
):not([data-runtime-conversation-item="true"]):not([data-runtime-sidebar-tab-button="true"]) {
  color: var(--runtime-accent-primary-text-soft) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .border-primary-400,
  .border-primary-500,
  .border-primary-600,
  [class*="border-primary-400"],
  [class*="border-primary-500"],
  [class*="border-primary-600"],
  [class*="ring-primary-400"],
  [class*="ring-primary-500"],
  [class*="ring-primary-600"]
) {
  --tw-ring-color: var(--runtime-accent-primary-ring) !important;
  border-color: var(--runtime-accent-primary-ring) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  input[type="checkbox"],
  input[type="radio"],
  progress
) {
  accent-color: var(--runtime-accent-primary-surface) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .js-package-discount-badge,
  [data-runtime-settings-dialog-badge="true"]
) {
  background: var(--runtime-accent-primary-soft) !important;
  background-color: var(--runtime-accent-primary-soft) !important;
  background-image: none !important;
  border: 0 !important;
  color: var(--runtime-accent-primary-text-soft) !important;
  box-shadow: var(--runtime-accent-primary-shadow) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .runtime-project-manager-modal-button[data-tone="primary"],
  .runtime-knowledge-action-btn[data-runtime-knowledge-base-action="save"]
) {
  background: var(--runtime-accent-primary-surface) !important;
  background-color: var(--runtime-accent-primary-surface) !important;
  background-image: none !important;
  border-color: transparent !important;
  color: var(--runtime-accent-primary-text) !important;
  box-shadow: var(--runtime-accent-primary-shadow) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .runtime-project-manager-modal-button[data-tone="primary"],
  .runtime-knowledge-action-btn[data-runtime-knowledge-base-action="save"]
):is(:hover, :focus-visible, :active) {
  background: var(--runtime-accent-primary-hover) !important;
  background-color: var(--runtime-accent-primary-hover) !important;
  color: var(--runtime-accent-primary-text) !important;
}

/* -------------------
 * 96. App Market Category Accent Normalization
 * ------------------- */

html body[data-runtime-shell-ready="true"] :is(
  .bg-white.dark\:bg-gray-900.flex.flex-col.h-full.w-full.pb-3,
  .relative.z-10.flex-1.overflow-hidden.bg-white.dark\:bg-gray-900
) .flex.items-center.overflow-x-auto.w-full.scrollbar-hide > .btn-pill.btn-md.flex-none.mx-1 {
  background: var(--runtime-surface-base) !important;
  background-color: var(--runtime-surface-base) !important;
  background-image: none !important;
  border: 1px solid rgba(17, 17, 17, 0.1) !important;
  color: var(--runtime-color-text-secondary) !important;
  box-shadow: none !important;
  filter: none !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .bg-white.dark\:bg-gray-900.flex.flex-col.h-full.w-full.pb-3,
  .relative.z-10.flex-1.overflow-hidden.bg-white.dark\:bg-gray-900
) .flex.items-center.overflow-x-auto.w-full.scrollbar-hide > .btn-pill.btn-md.flex-none.mx-1 {
  border-color: rgba(255, 255, 255, 0.12) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .bg-white.dark\:bg-gray-900.flex.flex-col.h-full.w-full.pb-3,
  .relative.z-10.flex-1.overflow-hidden.bg-white.dark\:bg-gray-900
) .flex.items-center.overflow-x-auto.w-full.scrollbar-hide > .btn-pill.btn-md.flex-none.mx-1:is(:hover, :focus, :focus-visible) {
  background: var(--runtime-fill-chip-hover) !important;
  background-color: var(--runtime-fill-chip-hover) !important;
  border-color: rgba(17, 17, 17, 0.14) !important;
  box-shadow: none !important;
  color: var(--runtime-color-text-primary) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .bg-white.dark\:bg-gray-900.flex.flex-col.h-full.w-full.pb-3,
  .relative.z-10.flex-1.overflow-hidden.bg-white.dark\:bg-gray-900
) .flex.items-center.overflow-x-auto.w-full.scrollbar-hide > .btn-pill.btn-md.flex-none.mx-1:is(:hover, :focus, :focus-visible) {
  border-color: rgba(255, 255, 255, 0.18) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .bg-white.dark\:bg-gray-900.flex.flex-col.h-full.w-full.pb-3,
  .relative.z-10.flex-1.overflow-hidden.bg-white.dark\:bg-gray-900
) .flex.items-center.overflow-x-auto.w-full.scrollbar-hide > .btn-pill.btn-md.flex-none.mx-1.btn-pill-active {
  background: var(--runtime-accent-primary-soft) !important;
  background-color: var(--runtime-accent-primary-soft) !important;
  background-image: none !important;
  border-color: var(--runtime-accent-primary-ring) !important;
  color: var(--runtime-accent-primary-text-soft) !important;
  box-shadow: none !important;
  filter: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .bg-white.dark\:bg-gray-900.flex.flex-col.h-full.w-full.pb-3,
  .relative.z-10.flex-1.overflow-hidden.bg-white.dark\:bg-gray-900
) .flex.items-center.overflow-x-auto.w-full.scrollbar-hide > .btn-pill.btn-md.flex-none.mx-1.btn-pill-active > span {
  color: var(--runtime-accent-primary-text-soft) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .bg-white.dark\:bg-gray-900.flex.flex-col.h-full.w-full.pb-3,
  .relative.z-10.flex-1.overflow-hidden.bg-white.dark\:bg-gray-900
) .flex.items-center.overflow-x-auto.w-full.scrollbar-hide > .btn-pill.btn-md.flex-none.mx-1.btn-pill-active:is(:hover, :focus, :focus-visible, :active) {
  background: var(--runtime-accent-primary-soft-hover) !important;
  background-color: var(--runtime-accent-primary-soft-hover) !important;
  border-color: var(--runtime-accent-primary-ring) !important;
  color: var(--runtime-accent-primary-text-soft) !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .bg-white.dark\:bg-gray-900.flex.flex-col.h-full.w-full.pb-3,
  .relative.z-10.flex-1.overflow-hidden.bg-white.dark\:bg-gray-900
) .relative.flex.flex-1.w-full.items-center > input#app-search-field.input.input-md.w-full.pl-10[name="app-search"] {
  padding: 10px 14px 10px 40px !important;
  background: var(--runtime-surface-base) !important;
  background-color: var(--runtime-surface-base) !important;
  background-image: none !important;
  border: 1px solid rgba(17, 17, 17, 0.1) !important;
  box-shadow: none !important;
  color: var(--runtime-color-text-primary) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .bg-white.dark\:bg-gray-900.flex.flex-col.h-full.w-full.pb-3,
  .relative.z-10.flex-1.overflow-hidden.bg-white.dark\:bg-gray-900
) .relative.flex.flex-1.w-full.items-center > input#app-search-field.input.input-md.w-full.pl-10[name="app-search"] {
  border-color: rgba(255, 255, 255, 0.12) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .bg-white.dark\:bg-gray-900.flex.flex-col.h-full.w-full.pb-3,
  .relative.z-10.flex-1.overflow-hidden.bg-white.dark\:bg-gray-900
) .relative.flex.flex-1.w-full.items-center > input#app-search-field.input.input-md.w-full.pl-10[name="app-search"]:is(:hover, :focus, :focus-visible) {
  border-color: rgba(17, 17, 17, 0.16) !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .bg-white.dark\:bg-gray-900.flex.flex-col.h-full.w-full.pb-3,
  .relative.z-10.flex-1.overflow-hidden.bg-white.dark\:bg-gray-900
) .relative.flex.flex-1.w-full.items-center > input#app-search-field.input.input-md.w-full.pl-10[name="app-search"]:is(:hover, :focus, :focus-visible) {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .bg-white.dark\:bg-gray-900.flex.flex-col.h-full.w-full.pb-3,
  .relative.z-10.flex-1.overflow-hidden.bg-white.dark\:bg-gray-900
) .relative.flex.flex-1.w-full.items-center > .absolute.inset-y-0.left-0.pl-3.flex.items-center.pointer-events-none .i-icon-search {
  color: var(--runtime-color-text-tertiary) !important;
}

/* -------------------
 * 97. Chat Auxiliary Bubble Shadow Alignment
 * ------------------- */

html body[data-runtime-shell-ready="true"] {
  --runtime-chat-auxiliary-bubble-shadow: var(--runtime-message-bubble-frame-shadow) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .thinking-card,
  #image-wrapper .thinking-card,
  .thinking-card.transition-all.duration-300.ease-out.rounded-lg,
  .tool-card-wrapper .tool-card-animated,
  .tool-card-wrapper .tool-card-animated[class*="bg-gray-50"],
  .tool-card-wrapper .tool-card-animated[class*="dark:bg-gray-800"],
  .tool-card-wrapper > div[class*="bg-gray-50"],
  .tool-card-wrapper > div[class*="dark:bg-gray-800"],
  .tool-card-wrapper > div.rounded-lg[class*="border"]
) {
  background: var(--runtime-chat-content-surface) !important;
  background-color: var(--runtime-chat-content-surface) !important;
  background-image: none !important;
  border: 0 !important;
  border-color: transparent !important;
  box-shadow: var(--runtime-chat-auxiliary-bubble-shadow) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .thinking-card:hover,
  .thinking-card:focus-within,
  .tool-card-wrapper .tool-card-animated:hover,
  .tool-card-wrapper .tool-card-animated:focus-within,
  .tool-card-wrapper > div[class*="bg-gray-50"]:hover,
  .tool-card-wrapper > div[class*="dark:bg-gray-800"]:hover,
  .tool-card-wrapper > div.rounded-lg[class*="border"]:hover
) {
  box-shadow: var(--runtime-chat-auxiliary-bubble-shadow) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  .thinking-card,
  #image-wrapper .thinking-card,
  .thinking-card.transition-all.duration-300.ease-out.rounded-lg,
  .tool-card-wrapper .tool-card-animated,
  .tool-card-wrapper .tool-card-animated[class*="bg-gray-50"],
  .tool-card-wrapper .tool-card-animated[class*="dark:bg-gray-800"],
  .tool-card-wrapper > div[class*="bg-gray-50"],
  .tool-card-wrapper > div[class*="dark:bg-gray-800"],
  .tool-card-wrapper > div.rounded-lg[class*="border"]
) {
  background: var(--runtime-chat-content-surface) !important;
  background-color: var(--runtime-chat-content-surface) !important;
  background-image: none !important;
  border: 0 !important;
  border-color: transparent !important;
  box-shadow: var(--runtime-chat-auxiliary-bubble-shadow) !important;
}

/* -------------------
 * 96. Anonymous Landing Notice Surface
 * ------------------- */

html body[data-runtime-shell-ready="true"] {
  --runtime-landing-notice-backdrop: rgba(17, 17, 17, 0.22) !important;
  --runtime-landing-notice-panel-surface: var(--runtime-settings-dialog-surface, var(--runtime-surface-panel, #ffffff)) !important;
  --runtime-landing-notice-panel-shadow: var(--runtime-settings-dialog-panel-shadow, var(--runtime-shadow-soft)) !important;
  --runtime-landing-notice-text-primary: var(--runtime-color-text-primary, #111111) !important;
  --runtime-landing-notice-text-secondary: var(--runtime-color-text-secondary, rgba(17, 17, 17, 0.76)) !important;
  --runtime-landing-notice-control-surface: var(--runtime-settings-dialog-control-surface, rgba(17, 17, 17, 0.035)) !important;
  --runtime-landing-notice-control-shadow: var(--runtime-settings-dialog-control-shadow, 0 0 0 2px rgba(15, 23, 42, 0.07)) !important;
}

html.dark body[data-runtime-shell-ready="true"] {
  --runtime-landing-notice-backdrop: rgba(0, 0, 0, 0.32) !important;
  --runtime-landing-notice-panel-surface: var(--runtime-settings-dialog-surface, rgb(32, 32, 32)) !important;
  --runtime-landing-notice-text-primary: var(--runtime-color-text-primary, #f5f5f5) !important;
  --runtime-landing-notice-text-secondary: var(--runtime-color-text-secondary, rgba(238, 238, 238, 0.88)) !important;
  --runtime-landing-notice-control-surface: var(--runtime-settings-dialog-control-surface, rgba(255, 255, 255, 0.045)) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] > div:first-child {
  background: var(--runtime-landing-notice-backdrop) !important;
  background-color: var(--runtime-landing-notice-backdrop) !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
  backdrop-filter: blur(10px) saturate(106%) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] > div:nth-child(2) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] > div:nth-child(2) > div:first-child {
  display: flex !important;
  flex-direction: column !important;
  background: var(--runtime-landing-notice-panel-surface) !important;
  background-color: var(--runtime-landing-notice-panel-surface) !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: var(--runtime-landing-notice-panel-shadow) !important;
  color: var(--runtime-landing-notice-text-primary) !important;
  overflow: hidden !important;
  max-height: min(80vh, calc(100dvh - 32px)) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] > div:nth-child(2) > div:first-child > div:nth-child(2) {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] > div:nth-child(2) > div:first-child > div:first-child,
html body[data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] > div:nth-child(2) > div:first-child > div:last-child {
  flex: 0 0 auto !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] > div:nth-child(2) > div:first-child > div,
html body[data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] :is(
  .md-editor,
  .md-editor-content,
  .md-editor-preview-wrapper,
  .md-editor-preview,
  .md-editor-preview.default-theme,
  blockquote,
  table,
  thead,
  tbody,
  tr,
  th,
  td,
  p,
  ul,
  li
) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] img:not([src]),
html body[data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] img[src=""] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 84px !important;
  min-height: 24px !important;
  width: 100% !important;
  max-width: 112px !important;
  height: 24px !important;
  object-fit: contain !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] :is(h1, h2, h3, h4, h5, h6, .text-gray-900, .dark\:text-gray-100) {
  color: var(--runtime-landing-notice-text-primary) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] :is(.md-editor, .md-editor-preview, blockquote, p, li, th, td) {
  color: var(--runtime-landing-notice-text-secondary) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] :is(button, [role="button"], .btn, .btn-icon) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: var(--runtime-landing-notice-control-shadow) !important;
  color: var(--runtime-landing-notice-text-primary) !important;
  transform: none !important;
  transition: background-color 0.14s ease, color 0.14s ease, box-shadow 0.14s ease !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] :is(button, [role="button"], .btn, .btn-icon):is(:hover, :focus-visible, :active) {
  background: var(--runtime-landing-notice-control-surface) !important;
  background-color: var(--runtime-landing-notice-control-surface) !important;
  box-shadow: var(--runtime-landing-notice-control-shadow) !important;
  color: var(--runtime-landing-notice-text-primary) !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] > div.fixed.inset-0.bg-black.bg-opacity-50:first-child {
  background: rgba(17, 17, 17, 0.22) !important;
  background-color: rgba(17, 17, 17, 0.22) !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px) saturate(106%) !important;
}

html.dark body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] > div.fixed.inset-0.bg-black.bg-opacity-50:first-child {
  background: rgba(0, 0, 0, 0.32) !important;
  background-color: rgba(0, 0, 0, 0.32) !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px) saturate(106%) !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] > div.flex.items-center.justify-center.min-h-full.p-4:nth-child(2) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] > div.flex.items-center.justify-center.min-h-full.p-4:nth-child(2) > div.relative:first-child {
  display: flex !important;
  flex-direction: column !important;
  background: var(--runtime-landing-notice-panel-surface) !important;
  background-color: var(--runtime-landing-notice-panel-surface) !important;
  background-image: none !important;
  box-shadow: var(--runtime-landing-notice-panel-shadow) !important;
  overflow: hidden !important;
}

html.dark body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"][data-runtime-landing-notice-overlay="true"] > div.flex.items-center.justify-center.min-h-full.p-4:nth-child(2) > div.relative:first-child {
  background: rgb(32, 32, 32) !important;
  background-color: rgb(32, 32, 32) !important;
  background-image: none !important;
}

html body[data-runtime-shell-ready="true"] > .fixed.inset-0.z-\[55\].overflow-y-auto:has(> div.flex.items-center.justify-center.min-h-full.p-4 > div.relative.bg-white.dark\:bg-gray-800.rounded-lg.shadow-xl.max-w-2xl.w-full.max-h-\[80vh\].overflow-hidden) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] > .fixed.inset-0.z-\[55\].overflow-y-auto:has(> div.flex.items-center.justify-center.min-h-full.p-4 > div.relative.bg-white.dark\:bg-gray-800.rounded-lg.shadow-xl.max-w-2xl.w-full.max-h-\[80vh\].overflow-hidden) > div.fixed.inset-0.bg-black.bg-opacity-50:first-child {
  background: var(--runtime-landing-notice-backdrop) !important;
  background-color: var(--runtime-landing-notice-backdrop) !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
  backdrop-filter: blur(10px) saturate(106%) !important;
}

html body[data-runtime-shell-ready="true"] > .fixed.inset-0.z-\[55\].overflow-y-auto:has(> div.flex.items-center.justify-center.min-h-full.p-4 > div.relative.bg-white.dark\:bg-gray-800.rounded-lg.shadow-xl.max-w-2xl.w-full.max-h-\[80vh\].overflow-hidden) > div.flex.items-center.justify-center.min-h-full.p-4:nth-child(2) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

html body[data-runtime-shell-ready="true"] > .fixed.inset-0.z-\[55\].overflow-y-auto:has(> div.flex.items-center.justify-center.min-h-full.p-4 > div.relative.bg-white.dark\:bg-gray-800.rounded-lg.shadow-xl.max-w-2xl.w-full.max-h-\[80vh\].overflow-hidden) > div.flex.items-center.justify-center.min-h-full.p-4:nth-child(2) > div.relative:first-child {
  display: flex !important;
  flex-direction: column !important;
  background: var(--runtime-landing-notice-panel-surface) !important;
  background-color: var(--runtime-landing-notice-panel-surface) !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: var(--runtime-landing-notice-panel-shadow) !important;
  color: var(--runtime-landing-notice-text-primary) !important;
  overflow: hidden !important;
  max-height: min(80vh, calc(100dvh - 32px)) !important;
}

html body[data-runtime-shell-ready="true"] > .fixed.inset-0.z-\[55\].overflow-y-auto:has(> div.flex.items-center.justify-center.min-h-full.p-4 > div.relative.bg-white.dark\:bg-gray-800.rounded-lg.shadow-xl.max-w-2xl.w-full.max-h-\[80vh\].overflow-hidden) > div.flex.items-center.justify-center.min-h-full.p-4:nth-child(2) > div.relative:first-child > div:nth-child(2) {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
}

html body[data-runtime-shell-ready="true"] > .fixed.inset-0.z-\[55\].overflow-y-auto:has(> div.flex.items-center.justify-center.min-h-full.p-4 > div.relative.bg-white.dark\:bg-gray-800.rounded-lg.shadow-xl.max-w-2xl.w-full.max-h-\[80vh\].overflow-hidden) > div.flex.items-center.justify-center.min-h-full.p-4:nth-child(2) > div.relative:first-child > div:first-child,
html body[data-runtime-shell-ready="true"] > .fixed.inset-0.z-\[55\].overflow-y-auto:has(> div.flex.items-center.justify-center.min-h-full.p-4 > div.relative.bg-white.dark\:bg-gray-800.rounded-lg.shadow-xl.max-w-2xl.w-full.max-h-\[80vh\].overflow-hidden) > div.flex.items-center.justify-center.min-h-full.p-4:nth-child(2) > div.relative:first-child > div:last-child {
  flex: 0 0 auto !important;
}

html body[data-runtime-shell-ready="true"] > .fixed.inset-0.z-\[55\].overflow-y-auto:has(> div.flex.items-center.justify-center.min-h-full.p-4 > div.relative.bg-white.dark\:bg-gray-800.rounded-lg.shadow-xl.max-w-2xl.w-full.max-h-\[80vh\].overflow-hidden) :is(
  .md-editor,
  .md-editor-content,
  .md-editor-preview-wrapper,
  .md-editor-preview,
  .md-editor-preview.default-theme,
  blockquote,
  table,
  thead,
  tbody,
  tr,
  th,
  td,
  p,
  ul,
  li
) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] > .fixed.inset-0.z-\[55\].overflow-y-auto:has(> div.flex.items-center.justify-center.min-h-full.p-4 > div.relative.bg-white.dark\:bg-gray-800.rounded-lg.shadow-xl.max-w-2xl.w-full.max-h-\[80vh\].overflow-hidden) img:not([src]),
html body[data-runtime-shell-ready="true"] > .fixed.inset-0.z-\[55\].overflow-y-auto:has(> div.flex.items-center.justify-center.min-h-full.p-4 > div.relative.bg-white.dark\:bg-gray-800.rounded-lg.shadow-xl.max-w-2xl.w-full.max-h-\[80vh\].overflow-hidden) img[src=""] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 84px !important;
  min-height: 24px !important;
  width: 100% !important;
  max-width: 112px !important;
  height: 24px !important;
  object-fit: contain !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
}

html body[data-runtime-shell-ready="true"] > .fixed.inset-0.z-\[55\].overflow-y-auto:has(> div.flex.items-center.justify-center.min-h-full.p-4 > div.relative.bg-white.dark\:bg-gray-800.rounded-lg.shadow-xl.max-w-2xl.w-full.max-h-\[80vh\].overflow-hidden) :is(h1, h2, h3, h4, h5, h6, .text-gray-900, .dark\:text-gray-100) {
  color: var(--runtime-landing-notice-text-primary) !important;
}

html body[data-runtime-shell-ready="true"] > .fixed.inset-0.z-\[55\].overflow-y-auto:has(> div.flex.items-center.justify-center.min-h-full.p-4 > div.relative.bg-white.dark\:bg-gray-800.rounded-lg.shadow-xl.max-w-2xl.w-full.max-h-\[80vh\].overflow-hidden) :is(.md-editor, .md-editor-preview, blockquote, p, li, th, td) {
  color: var(--runtime-landing-notice-text-secondary) !important;
}

html body[data-runtime-shell-ready="true"] > .fixed.inset-0.z-\[55\].overflow-y-auto:has(> div.flex.items-center.justify-center.min-h-full.p-4 > div.relative.bg-white.dark\:bg-gray-800.rounded-lg.shadow-xl.max-w-2xl.w-full.max-h-\[80vh\].overflow-hidden) :is(button, [role="button"], .btn, .btn-icon) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: var(--runtime-landing-notice-control-shadow) !important;
  color: var(--runtime-landing-notice-text-primary) !important;
  transform: none !important;
  transition: background-color 0.14s ease, color 0.14s ease, box-shadow 0.14s ease !important;
}

html body[data-runtime-shell-ready="true"] > .fixed.inset-0.z-\[55\].overflow-y-auto:has(> div.flex.items-center.justify-center.min-h-full.p-4 > div.relative.bg-white.dark\:bg-gray-800.rounded-lg.shadow-xl.max-w-2xl.w-full.max-h-\[80vh\].overflow-hidden) :is(button, [role="button"], .btn, .btn-icon):is(:hover, :focus-visible, :active) {
  background: var(--runtime-landing-notice-control-surface) !important;
  background-color: var(--runtime-landing-notice-control-surface) !important;
  box-shadow: var(--runtime-landing-notice-control-shadow) !important;
  color: var(--runtime-landing-notice-text-primary) !important;
}

/* -------------------
 * 89. Topbar Language Menu Stability Lock
 * ------------------- */

html body[data-runtime-shell-ready="true"] [data-runtime-language-menu="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  [data-runtime-header-action="language"] + .menu-items,
  [data-runtime-header-action-slot="true"]:has([data-runtime-header-action="language"]) .menu-items
) {
  width: min(248px, 72vw) !important;
  min-width: min(248px, 72vw) !important;
  max-width: min(248px, 72vw) !important;
  min-height: 0 !important;
  max-height: min(420px, calc(100vh - 88px)) !important;
  padding: 8px !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  scrollbar-gutter: stable !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
  contain: layout paint !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-language-menu="true"] :is(.menu-item, [role="menuitem"], [role="option"], button),
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  [data-runtime-header-action="language"] + .menu-items,
  [data-runtime-header-action-slot="true"]:has([data-runtime-header-action="language"]) .menu-items
) :is(.menu-item, [role="menuitem"], [role="option"], button) {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 36px !important;
  height: 36px !important;
  margin: 0 !important;
  padding: 0 10px !important;
  border: 0 !important;
  border-radius: 10px !important;
  box-sizing: border-box !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  animation: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-language-menu="true"] :is(.menu-item, [role="menuitem"], [role="option"], button) *,
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  [data-runtime-header-action="language"] + .menu-items,
  [data-runtime-header-action-slot="true"]:has([data-runtime-header-action="language"]) .menu-items
) :is(.menu-item, [role="menuitem"], [role="option"], button) * {
  transform: none !important;
  filter: none !important;
  transition: none !important;
  animation: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-language-menu="true"] :is(.menu-item, [role="menuitem"], [role="option"], button):is(:hover, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-header-actions="true"] :is(
  [data-runtime-header-action="language"] + .menu-items,
  [data-runtime-header-action-slot="true"]:has([data-runtime-header-action="language"]) .menu-items
) :is(.menu-item, [role="menuitem"], [role="option"], button):is(:hover, :focus, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  animation: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-sidebar-legacy-tab-button="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-sidebar-legacy-tab-group="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-sidebar-legacy-tab-wrapper="true"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] input.runtime-project-manager-search-input.runtime-project-manager-search-input,
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] input.runtime-project-manager-search-input.runtime-project-manager-search-input:is(:hover, :focus, :focus-visible, :active) {
  -webkit-appearance: none !important;
  appearance: none !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] input.runtime-project-manager-search-input.runtime-project-manager-search-input::-webkit-search-decoration,
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] input.runtime-project-manager-search-input.runtime-project-manager-search-input::-webkit-search-cancel-button,
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] input.runtime-project-manager-search-input.runtime-project-manager-search-input::-webkit-search-results-button,
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] input.runtime-project-manager-search-input.runtime-project-manager-search-input::-webkit-search-results-decoration {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] .runtime-project-manager-target-trigger.runtime-project-manager-target-trigger {
  border-color: rgba(15, 23, 42, 0.1) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  background-color: rgba(255, 255, 255, 0.88) !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] .runtime-project-manager-target-trigger.runtime-project-manager-target-trigger:is(:hover, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] .runtime-project-manager-target-picker:has(.runtime-project-manager-target-menu:not([hidden])) .runtime-project-manager-target-trigger.runtime-project-manager-target-trigger {
  border-color: rgba(69, 82, 99, 0.28) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  background-color: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 0 0 3px rgba(69, 82, 99, 0.08) !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] .runtime-project-manager-target-menu.runtime-project-manager-target-menu {
  padding: 7px !important;
  border-color: rgba(15, 23, 42, 0.08) !important;
  border-radius: 16px !important;
  background: rgb(248, 250, 252) !important;
  background-color: rgb(248, 250, 252) !important;
  background-image: none !important;
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] input.runtime-project-manager-target-filter.runtime-project-manager-target-filter,
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] input.runtime-project-manager-target-filter.runtime-project-manager-target-filter:is(:hover, :focus, :focus-visible, :active) {
  min-height: 34px !important;
  padding: 0 12px !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 11px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  background-color: rgba(255, 255, 255, 0.72) !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] input.runtime-project-manager-target-filter.runtime-project-manager-target-filter:is(:focus, :focus-visible) {
  border-color: rgba(69, 82, 99, 0.24) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  background-color: rgba(255, 255, 255, 0.92) !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] button.runtime-project-manager-target-option.runtime-project-manager-target-option {
  min-height: 36px !important;
  padding: 0 12px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-color-text-secondary, rgba(5, 5, 5, 0.68)) !important;
  box-shadow: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] button.runtime-project-manager-target-option.runtime-project-manager-target-option:is(:hover, :focus, :focus-visible, :active),
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] button.runtime-project-manager-target-option.runtime-project-manager-target-option[data-selected="true"] {
  background: rgba(69, 82, 99, 0.1) !important;
  background-color: rgba(69, 82, 99, 0.1) !important;
  color: var(--runtime-color-text-primary, rgba(5, 5, 5, 0.92)) !important;
  box-shadow: none !important;
  outline: 0 !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] button.runtime-project-manager-target-option.runtime-project-manager-target-option[data-selected="true"] {
  font-weight: 760 !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] button.runtime-project-manager-target-option.runtime-project-manager-target-option[data-selected="true"]::after {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 10px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.58;
  transform: translateY(-1px) rotate(45deg);
}

html.dark body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] .runtime-project-manager-target-trigger.runtime-project-manager-target-trigger {
  border-color: rgba(255, 255, 255, 0.13) !important;
  background: rgba(36, 36, 36, 0.92) !important;
  background-color: rgba(36, 36, 36, 0.92) !important;
  color: var(--runtime-color-text-primary, rgba(255, 255, 255, 0.9)) !important;
}

html.dark body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] .runtime-project-manager-target-trigger.runtime-project-manager-target-trigger:is(:hover, :focus, :focus-visible),
html.dark body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] .runtime-project-manager-target-picker:has(.runtime-project-manager-target-menu:not([hidden])) .runtime-project-manager-target-trigger.runtime-project-manager-target-trigger {
  border-color: rgba(148, 163, 184, 0.32) !important;
  background: rgba(47, 47, 47, 0.98) !important;
  background-color: rgba(47, 47, 47, 0.98) !important;
  color: var(--runtime-color-text-primary, rgba(255, 255, 255, 0.94)) !important;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.09) !important;
}

html.dark body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] .runtime-project-manager-target-menu.runtime-project-manager-target-menu {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgb(24, 24, 24) !important;
  background-color: rgb(24, 24, 24) !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.045) inset !important;
}

html.dark body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] input.runtime-project-manager-target-filter.runtime-project-manager-target-filter,
html.dark body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] input.runtime-project-manager-target-filter.runtime-project-manager-target-filter:is(:hover, :focus, :focus-visible, :active) {
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  background: rgba(37, 37, 37, 0.96) !important;
  background-color: rgba(37, 37, 37, 0.96) !important;
  color: var(--runtime-color-text-primary, rgba(255, 255, 255, 0.92)) !important;
}

html.dark body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] input.runtime-project-manager-target-filter.runtime-project-manager-target-filter:is(:focus, :focus-visible) {
  border-color: rgba(148, 163, 184, 0.3) !important;
  background: rgba(43, 43, 43, 0.98) !important;
  background-color: rgba(43, 43, 43, 0.98) !important;
}

html.dark body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] input.runtime-project-manager-target-filter.runtime-project-manager-target-filter::placeholder {
  color: var(--runtime-color-text-tertiary, rgba(188, 188, 188, 0.72)) !important;
}

html.dark body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] button.runtime-project-manager-target-option.runtime-project-manager-target-option {
  color: var(--runtime-color-text-secondary, rgba(238, 238, 238, 0.86)) !important;
}

html.dark body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] button.runtime-project-manager-target-option.runtime-project-manager-target-option:is(:hover, :focus, :focus-visible, :active),
html.dark body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-project-manager-dialog="true"][data-runtime-project-manager-dialog="true"] button.runtime-project-manager-target-option.runtime-project-manager-target-option[data-selected="true"] {
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--runtime-color-text-primary, rgba(255, 255, 255, 0.94)) !important;
  box-shadow: none !important;
  outline: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] .runtime-project-manager-modal-panel.runtime-project-manager-modal-panel {
  position: relative !important;
  width: min(500px, calc(100vw - 48px)) !important;
  padding: 22px 22px 22px !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] .runtime-project-manager-modal-header.runtime-project-manager-modal-header {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] .runtime-project-manager-modal-title.runtime-project-manager-modal-title {
  display: inline-block !important;
  width: fit-content !important;
  max-width: calc(100% - 46px) !important;
  padding-right: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  font-size: 19px !important;
  letter-spacing: 0 !important;
  line-height: 1.3 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] .runtime-project-manager-modal-title-break.runtime-project-manager-modal-title-break {
  display: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] .runtime-project-manager-modal-message.runtime-project-manager-modal-message {
  display: block !important;
  margin-top: 7px !important;
  padding-right: 32px !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] .runtime-project-manager-modal-close-button.runtime-project-manager-modal-close-button {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-color-text-secondary, rgba(5, 5, 5, 0.56)) !important;
  font-size: 24px !important;
  line-height: 1 !important;
  box-shadow: none !important;
  outline: 0 !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] .runtime-project-manager-modal-close-button.runtime-project-manager-modal-close-button:is(:hover, :focus-visible) {
  background: rgba(15, 23, 42, 0.06) !important;
  background-color: rgba(15, 23, 42, 0.06) !important;
  color: var(--runtime-color-text-primary, rgba(5, 5, 5, 0.88)) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] .runtime-project-manager-modal-close-button.runtime-project-manager-modal-close-button {
  color: var(--runtime-color-text-secondary, rgba(255, 255, 255, 0.62)) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] .runtime-project-manager-modal-close-button.runtime-project-manager-modal-close-button:is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--runtime-color-text-primary, rgba(255, 255, 255, 0.9)) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] .runtime-project-manager-modal-prompt-field.runtime-project-manager-modal-prompt-field {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  margin-top: 16px !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] .runtime-project-manager-modal-prompt-field.runtime-project-manager-modal-prompt-field {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] .runtime-project-manager-modal-prompt-field.runtime-project-manager-modal-prompt-field input.runtime-project-manager-modal-input.runtime-project-manager-modal-input {
  min-height: 42px !important;
  margin-top: 0 !important;
  padding-left: 16px !important;
  padding-right: 102px !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  border-style: solid !important;
  border-width: 1px !important;
  border-radius: 13px !important;
  background: rgba(15, 23, 42, 0.045) !important;
  background-color: rgba(15, 23, 42, 0.045) !important;
  box-shadow: none !important;
  outline: 0 !important;
  font-size: 15px !important;
  font-weight: 620 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] .runtime-project-manager-modal-prompt-field.runtime-project-manager-modal-prompt-field input.runtime-project-manager-modal-input.runtime-project-manager-modal-input:is(:focus, :focus-visible) {
  border-color: rgba(69, 82, 99, 0.24) !important;
  background: rgba(15, 23, 42, 0.06) !important;
  background-color: rgba(15, 23, 42, 0.06) !important;
  box-shadow: none !important;
  outline: 0 !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] .runtime-project-manager-modal-prompt-field.runtime-project-manager-modal-prompt-field input.runtime-project-manager-modal-input.runtime-project-manager-modal-input {
  border-color: rgba(255, 255, 255, 0.14) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--runtime-color-text-primary, rgba(255, 255, 255, 0.92)) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] .runtime-project-manager-modal-prompt-field.runtime-project-manager-modal-prompt-field input.runtime-project-manager-modal-input.runtime-project-manager-modal-input:is(:focus, :focus-visible) {
  border-color: rgba(148, 163, 184, 0.32) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-inline-submit.runtime-project-manager-modal-inline-submit,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-create-category"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-inline-submit.runtime-project-manager-modal-inline-submit:is(:hover, :active, :focus, :focus-visible, :disabled) {
  position: absolute !important;
  top: 50% !important;
  right: 7px !important;
  min-height: 30px !important;
  max-width: 96px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  transform: translateY(-50%) !important;
  white-space: nowrap !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-rename"] .runtime-project-manager-modal-panel.runtime-project-manager-modal-panel {
  position: relative !important;
  width: min(506px, calc(100vw - 48px)) !important;
  padding: 24px 24px 22px !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-rename"] .runtime-project-manager-modal-header.runtime-project-manager-modal-header {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-rename"] .runtime-project-manager-modal-title.runtime-project-manager-modal-title {
  display: inline-block !important;
  width: fit-content !important;
  max-width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  font-size: 20px !important;
  letter-spacing: 0 !important;
  line-height: 1.28 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-rename"] .runtime-project-manager-modal-title-break.runtime-project-manager-modal-title-break {
  display: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-rename"] .runtime-project-manager-modal-message.runtime-project-manager-modal-message {
  display: block !important;
  margin-top: 8px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-rename"] input.runtime-project-manager-modal-input.runtime-project-manager-modal-input {
  min-height: 44px !important;
  margin-top: 18px !important;
  padding: 0 15px !important;
  border: 0 !important;
  border-style: none !important;
  border-width: 0 !important;
  border-radius: 14px !important;
  background: rgba(15, 23, 42, 0.04) !important;
  background-color: rgba(15, 23, 42, 0.04) !important;
  box-shadow: none !important;
  outline: 0 !important;
  font-size: 15px !important;
  font-weight: 620 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-rename"] input.runtime-project-manager-modal-input.runtime-project-manager-modal-input:is(:focus, :focus-visible) {
  background: rgba(15, 23, 42, 0.055) !important;
  background-color: rgba(15, 23, 42, 0.055) !important;
  box-shadow: none !important;
  outline: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-rename"] .runtime-project-manager-modal-actions.runtime-project-manager-modal-actions {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 14px 0 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-rename"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-rename"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button:is(:hover, :active, :focus, :focus-visible) {
  min-width: 76px !important;
  min-height: 36px !important;
  padding: 0 17px !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-rename"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"]:not([data-tone]) {
  background: rgba(15, 23, 42, 0.055) !important;
  background-color: rgba(15, 23, 42, 0.055) !important;
  color: rgba(15, 23, 42, 0.72) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-rename"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"]:not(:disabled):is(:hover, :focus-visible) {
  background: rgba(15, 23, 42, 0.085) !important;
  background-color: rgba(15, 23, 42, 0.085) !important;
  color: rgba(15, 23, 42, 0.9) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-rename"] input.runtime-project-manager-modal-input.runtime-project-manager-modal-input {
  background: rgba(255, 255, 255, 0.075) !important;
  background-color: rgba(255, 255, 255, 0.075) !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-rename"] input.runtime-project-manager-modal-input.runtime-project-manager-modal-input:is(:focus, :focus-visible) {
  background: rgba(255, 255, 255, 0.095) !important;
  background-color: rgba(255, 255, 255, 0.095) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-rename"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"]:not([data-tone]) {
  background: rgba(255, 255, 255, 0.075) !important;
  background-color: rgba(255, 255, 255, 0.075) !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-rename"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"]:not(:disabled):is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, 0.11) !important;
  background-color: rgba(255, 255, 255, 0.11) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-delete"] .runtime-project-manager-modal-actions.runtime-project-manager-modal-actions {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 16px 0 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button:is(:hover, :active, :focus, :focus-visible) {
  min-width: 74px !important;
  min-height: 36px !important;
  padding: 0 16px !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 680 !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"] {
  background: rgba(15, 23, 42, 0.055) !important;
  background-color: rgba(15, 23, 42, 0.055) !important;
  color: rgba(15, 23, 42, 0.72) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="history-conversation-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"]:not([data-tone]) {
  background: rgba(15, 23, 42, 0.055) !important;
  background-color: rgba(15, 23, 42, 0.055) !important;
  color: rgba(15, 23, 42, 0.72) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"]:not(:disabled):is(:hover, :focus-visible) {
  background: rgba(15, 23, 42, 0.085) !important;
  background-color: rgba(15, 23, 42, 0.085) !important;
  color: rgba(15, 23, 42, 0.9) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-tone="danger"] {
  background: rgba(153, 27, 27, 0.095) !important;
  background-color: rgba(153, 27, 27, 0.095) !important;
  color: rgba(153, 27, 27, 0.96) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-tone="danger"]:not(:disabled):is(:hover, :focus-visible) {
  background: rgba(153, 27, 27, 0.14) !important;
  background-color: rgba(153, 27, 27, 0.14) !important;
  color: rgba(127, 29, 29, 0.98) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"] {
  background: rgba(255, 255, 255, 0.075) !important;
  background-color: rgba(255, 255, 255, 0.075) !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="history-conversation-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"]:not([data-tone]) {
  background: rgba(255, 255, 255, 0.075) !important;
  background-color: rgba(255, 255, 255, 0.075) !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"]:not(:disabled):is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, 0.11) !important;
  background-color: rgba(255, 255, 255, 0.11) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-tone="danger"] {
  background: rgba(248, 113, 113, 0.14) !important;
  background-color: rgba(248, 113, 113, 0.14) !important;
  color: rgba(254, 202, 202, 0.94) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="history-conversation-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-tone="danger"]:not(:disabled):is(:hover, :focus-visible) {
  background: rgba(248, 113, 113, 0.2) !important;
  background-color: rgba(248, 113, 113, 0.2) !important;
  color: rgba(254, 226, 226, 0.98) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] .runtime-project-manager-modal-panel.runtime-project-manager-modal-panel {
  width: min(506px, calc(100vw - 48px)) !important;
  padding: 24px 24px 22px !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] .runtime-project-manager-modal-header.runtime-project-manager-modal-header {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] .runtime-project-manager-modal-title.runtime-project-manager-modal-title,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] .runtime-project-manager-modal-message.runtime-project-manager-modal-message {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] .runtime-project-manager-modal-title.runtime-project-manager-modal-title {
  font-size: 19px !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] .runtime-project-manager-modal-title-break.runtime-project-manager-modal-title-break {
  display: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] .runtime-project-manager-modal-message.runtime-project-manager-modal-message {
  margin-top: 7px !important;
  color: var(--runtime-color-text-secondary, rgba(15, 23, 42, 0.74)) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] .runtime-project-manager-modal-actions.runtime-project-manager-modal-actions {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 18px 0 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button:is(:hover, :active, :focus, :focus-visible) {
  min-width: 78px !important;
  min-height: 36px !important;
  padding: 0 17px !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"]:not([data-tone]) {
  background: rgba(15, 23, 42, 0.055) !important;
  background-color: rgba(15, 23, 42, 0.055) !important;
  color: rgba(15, 23, 42, 0.72) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"]:not(:disabled):is(:hover, :focus-visible) {
  background: rgba(15, 23, 42, 0.085) !important;
  background-color: rgba(15, 23, 42, 0.085) !important;
  color: rgba(15, 23, 42, 0.9) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-tone="danger"] {
  background: rgba(153, 27, 27, 0.095) !important;
  background-color: rgba(153, 27, 27, 0.095) !important;
  color: rgba(153, 27, 27, 0.96) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-tone="danger"]:not(:disabled):is(:hover, :focus-visible) {
  background: rgba(153, 27, 27, 0.14) !important;
  background-color: rgba(153, 27, 27, 0.14) !important;
  color: rgba(127, 29, 29, 0.98) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] .runtime-project-manager-modal-message.runtime-project-manager-modal-message {
  color: var(--runtime-color-text-secondary, rgba(238, 238, 238, 0.86)) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"]:not([data-tone]) {
  background: rgba(255, 255, 255, 0.075) !important;
  background-color: rgba(255, 255, 255, 0.075) !important;
  color: rgba(255, 255, 255, 0.74) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"]:not(:disabled):is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, 0.11) !important;
  background-color: rgba(255, 255, 255, 0.11) !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-tone="danger"] {
  background: rgba(248, 113, 113, 0.14) !important;
  background-color: rgba(248, 113, 113, 0.14) !important;
  color: rgba(254, 202, 202, 0.94) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal-variant="project-selection-delete"] button.runtime-project-manager-modal-button.runtime-project-manager-modal-button[data-tone="danger"]:not(:disabled):is(:hover, :focus-visible) {
  background: rgba(248, 113, 113, 0.2) !important;
  background-color: rgba(248, 113, 113, 0.2) !important;
  color: rgba(254, 226, 226, 0.98) !important;
}

/* -------------------
 * 121. Final Settings Theme Switch Lock
 * ------------------- */

html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"][data-runtime-settings-dialog-panel="true"] button[role="switch"]:not(#runtime-settings-theme-switch-lock),
html body[data-runtime-shell-ready="true"][data-runtime-shell-ready="true"] [data-runtime-settings-dialog-panel="true"][data-runtime-settings-dialog-panel="true"] button[role="switch"]:not(#runtime-settings-theme-switch-lock):is(:hover, :focus, :focus-visible, :active) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  transition: none !important;
  transform: none !important;
}

/* -------------------
 * 122. Upload Preview Surface Unification
 * ------------------- */

html body[data-runtime-shell-ready="true"] [data-runtime-upload-preview-list="true"] {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  gap: 8px !important;
  max-width: 100% !important;
  overflow: visible !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-upload-preview-list="true"][data-runtime-upload-preview-host="true"] {
  flex: 1 1 100% !important;
  width: 100% !important;
  max-width: 100% !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-upload-preview-list="true"] > button {
  display: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-upload-preview-orphan-remove="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-upload-preview-native-remove="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-upload-preview-list="true"] > [data-runtime-upload-preview-orphan-remove="true"],
html body[data-runtime-shell-ready="true"] div[title^="点击预览"] [data-runtime-upload-preview-native-remove="true"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-upload-preview-host="true"]:not(footer) {
  position: relative !important;
  display: inline-flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  flex: 0 1 auto !important;
  max-width: min(220px, 100%) !important;
  margin: 0 !important;
  vertical-align: top !important;
  overflow: visible !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
}

html body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"],
html body[data-runtime-shell-ready="true"] div[title^="点击预览"][data-runtime-upload-preview-card="true"],
html body[data-runtime-shell-ready="true"] div[title^="点击预览"],
html body[data-runtime-shell-ready="true"] div[title^="点击预览"]:has(button[data-runtime-upload-preview-owned-remove="true"]) {
  position: relative !important;
  display: block !important;
  flex: 0 1 auto !important;
  min-width: 120px !important;
  max-width: 220px !important;
  width: min(220px, calc(100vw - 48px)) !important;
  height: 64px !important;
  padding: 10px 36px 10px 12px !important;
  margin: 0 !important;
  border: 1px solid var(--runtime-divider, rgba(15, 23, 42, 0.08)) !important;
  border-radius: 12px !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: var(--runtime-color-text-primary, rgba(17, 24, 39, 0.88)) !important;
  box-shadow: none !important;
  filter: none !important;
  transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-upload-preview-host="true"]:not(footer)::before,
html body[data-runtime-shell-ready="true"] [data-runtime-upload-preview-host="true"]:not(footer)::after,
html body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"]::before,
html body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"]::after,
html body[data-runtime-shell-ready="true"] div[title^="点击预览"]::before,
html body[data-runtime-shell-ready="true"] div[title^="点击预览"]::after,
html body[data-runtime-shell-ready="true"] [data-runtime-upload-preview-host="true"]:not(footer) > :not(button),
html body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"] > :not(button),
html body[data-runtime-shell-ready="true"] div[title^="点击预览"] > :not(button),
html body[data-runtime-shell-ready="true"] div[title^="点击预览"]:has(button[data-runtime-upload-preview-owned-remove="true"]) > :not(button) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
}

html body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"]:is(:hover, :focus-within),
html body[data-runtime-shell-ready="true"] div[title^="点击预览"]:is(:hover, :focus-within),
html body[data-runtime-shell-ready="true"] div[title^="点击预览"]:has(button[data-runtime-upload-preview-owned-remove="true"]):is(:hover, :focus-within) {
  border-color: var(--runtime-divider-strong, rgba(15, 23, 42, 0.13)) !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"],
html.dark body[data-runtime-shell-ready="true"] div[title^="点击预览"][data-runtime-upload-preview-card="true"],
html.dark body[data-runtime-shell-ready="true"] div[title^="点击预览"],
html.dark body[data-runtime-shell-ready="true"] div[title^="点击预览"]:has(button[data-runtime-upload-preview-owned-remove="true"]) {
  border-color: var(--runtime-divider, rgba(255, 255, 255, 0.085)) !important;
  background: transparent !important;
  background-color: transparent !important;
  color: var(--runtime-color-text-primary, rgba(245, 245, 245, 0.92)) !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"]:is(:hover, :focus-within),
html.dark body[data-runtime-shell-ready="true"] div[title^="点击预览"]:is(:hover, :focus-within),
html.dark body[data-runtime-shell-ready="true"] div[title^="点击预览"]:has(button[data-runtime-upload-preview-owned-remove="true"]):is(:hover, :focus-within) {
  border-color: var(--runtime-divider-strong, rgba(255, 255, 255, 0.14)) !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"] > div:first-of-type,
html body[data-runtime-shell-ready="true"] div[title^="点击预览"] > div:first-of-type,
html body[data-runtime-shell-ready="true"] div[title^="点击预览"]:has(button[data-runtime-upload-preview-owned-remove="true"]) > div:first-of-type {
  color: var(--runtime-color-text-primary, rgba(17, 24, 39, 0.88)) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 20px !important;
  letter-spacing: 0 !important;
  max-width: calc(100% - 28px) !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  transform: none !important;
}

html.dark body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"] > div:first-of-type,
html.dark body[data-runtime-shell-ready="true"] div[title^="点击预览"] > div:first-of-type,
html.dark body[data-runtime-shell-ready="true"] div[title^="点击预览"]:has(button[data-runtime-upload-preview-owned-remove="true"]) > div:first-of-type {
  color: var(--runtime-color-text-primary, rgba(245, 245, 245, 0.92)) !important;
}

html body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"] > div:nth-of-type(2),
html body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"] > div:nth-of-type(2) *,
html body[data-runtime-shell-ready="true"] div[title^="点击预览"] > div:nth-of-type(2),
html body[data-runtime-shell-ready="true"] div[title^="点击预览"] > div:nth-of-type(2) *,
html body[data-runtime-shell-ready="true"] div[title^="点击预览"]:has(button[data-runtime-upload-preview-owned-remove="true"]) > div:nth-of-type(2),
html body[data-runtime-shell-ready="true"] div[title^="点击预览"]:has(button[data-runtime-upload-preview-owned-remove="true"]) > div:nth-of-type(2) * {
  color: var(--runtime-color-text-tertiary, rgba(17, 24, 39, 0.46)) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 18px !important;
  letter-spacing: 0 !important;
  max-width: calc(100% - 28px) !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  transform: none !important;
}

html.dark body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"] > div:nth-of-type(2),
html.dark body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"] > div:nth-of-type(2) *,
html.dark body[data-runtime-shell-ready="true"] div[title^="点击预览"] > div:nth-of-type(2),
html.dark body[data-runtime-shell-ready="true"] div[title^="点击预览"] > div:nth-of-type(2) *,
html.dark body[data-runtime-shell-ready="true"] div[title^="点击预览"]:has(button[data-runtime-upload-preview-owned-remove="true"]) > div:nth-of-type(2),
html.dark body[data-runtime-shell-ready="true"] div[title^="点击预览"]:has(button[data-runtime-upload-preview-owned-remove="true"]) > div:nth-of-type(2) * {
  color: var(--runtime-color-text-tertiary, rgba(245, 245, 245, 0.48)) !important;
}

html body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"] button[data-runtime-upload-preview-owned-remove="true"],
html body[data-runtime-shell-ready="true"] [data-runtime-upload-preview-host="true"]:not(footer) > button[data-runtime-upload-preview-owned-remove="true"],
html body[data-runtime-shell-ready="true"] div[title^="点击预览"] button[data-runtime-upload-preview-owned-remove="true"] {
  position: absolute !important;
  inset: 8px 8px auto auto !important;
  top: 8px !important;
  right: 8px !important;
  bottom: auto !important;
  left: auto !important;
  display: inline-flex !important;
  flex: 0 0 24px !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--runtime-fill-chip, rgba(15, 23, 42, 0.06)) !important;
  background-color: var(--runtime-fill-chip, rgba(15, 23, 42, 0.06)) !important;
  color: var(--runtime-color-text-secondary, rgba(17, 24, 39, 0.64)) !important;
  box-shadow: none !important;
  transform: none !important;
  visibility: visible !important;
  opacity: 0.78 !important;
  overflow: hidden !important;
  line-height: 1 !important;
  font-size: 14px !important;
  z-index: 3 !important;
  cursor: pointer !important;
}

html body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"] button[data-runtime-upload-preview-owned-remove="true"] :is(svg, img),
html body[data-runtime-shell-ready="true"] [data-runtime-upload-preview-host="true"]:not(footer) > button[data-runtime-upload-preview-owned-remove="true"] :is(svg, img),
html body[data-runtime-shell-ready="true"] div[title^="点击预览"] button[data-runtime-upload-preview-owned-remove="true"] :is(svg, img) {
  display: block !important;
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  margin: 0 !important;
  color: currentColor !important;
  opacity: 1 !important;
  filter: none !important;
}

html body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"] button[data-runtime-upload-preview-owned-remove="true"]:is(:hover, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-upload-preview-host="true"]:not(footer) > button[data-runtime-upload-preview-owned-remove="true"]:is(:hover, :focus-visible),
html body[data-runtime-shell-ready="true"] div[title^="点击预览"] button[data-runtime-upload-preview-owned-remove="true"]:is(:hover, :focus-visible) {
  background: var(--runtime-fill-chip-hover, rgba(15, 23, 42, 0.1)) !important;
  background-color: var(--runtime-fill-chip-hover, rgba(15, 23, 42, 0.1)) !important;
  color: var(--runtime-color-text-primary, rgba(17, 24, 39, 0.9)) !important;
  opacity: 1 !important;
}

html.dark body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"] button[data-runtime-upload-preview-owned-remove="true"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-upload-preview-host="true"]:not(footer) > button[data-runtime-upload-preview-owned-remove="true"],
html.dark body[data-runtime-shell-ready="true"] div[title^="点击预览"] button[data-runtime-upload-preview-owned-remove="true"] {
  background: var(--runtime-fill-chip, rgba(255, 255, 255, 0.075)) !important;
  background-color: var(--runtime-fill-chip, rgba(255, 255, 255, 0.075)) !important;
  color: var(--runtime-color-text-secondary, rgba(245, 245, 245, 0.68)) !important;
}

html.dark body[data-runtime-shell-ready="true"] div[data-runtime-upload-preview-card="true"] button[data-runtime-upload-preview-owned-remove="true"]:is(:hover, :focus-visible),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-upload-preview-host="true"]:not(footer) > button[data-runtime-upload-preview-owned-remove="true"]:is(:hover, :focus-visible),
html.dark body[data-runtime-shell-ready="true"] div[title^="点击预览"] button[data-runtime-upload-preview-owned-remove="true"]:is(:hover, :focus-visible) {
  background: var(--runtime-fill-chip-hover, rgba(255, 255, 255, 0.12)) !important;
  background-color: var(--runtime-fill-chip-hover, rgba(255, 255, 255, 0.12)) !important;
  color: var(--runtime-color-text-primary, rgba(255, 255, 255, 0.92)) !important;
}

html body[data-runtime-shell-ready="true"] div[class*="flex-col"][class*="shadow-lg"]:has(span:is(:only-child, *):not(:empty)):has(.editor-scroll-container),
html body[data-runtime-shell-ready="true"] div[class*="flex-col"][class*="shadow-lg"]:has(.editor-scroll-container):has(.markdown-body) {
  background: var(--runtime-surface-panel, #ffffff) !important;
  background-color: var(--runtime-surface-panel, #ffffff) !important;
  background-image: none !important;
  color: var(--runtime-color-text-primary, rgba(17, 24, 39, 0.88)) !important;
  border-left-color: var(--runtime-divider, rgba(15, 23, 42, 0.08)) !important;
  box-shadow: none !important;
}

html.dark body[data-runtime-shell-ready="true"] div[class*="flex-col"][class*="shadow-lg"]:has(.editor-scroll-container):has(.markdown-body) {
  background: var(--runtime-surface-panel, #202020) !important;
  background-color: var(--runtime-surface-panel, #202020) !important;
  color: var(--runtime-color-text-primary, rgba(245, 245, 245, 0.92)) !important;
  border-left-color: var(--runtime-divider, rgba(255, 255, 255, 0.08)) !important;
}

html body[data-runtime-shell-ready="true"] div[class*="flex-col"][class*="shadow-lg"]:has(.editor-scroll-container):has(.markdown-body) > div[class*="justify-between"][class*="h-16"],
html body[data-runtime-shell-ready="true"] div[class*="flex-col"][class*="shadow-lg"]:has(.editor-scroll-container):has(.markdown-body) .editor-scroll-container,
html body[data-runtime-shell-ready="true"] div[class*="flex-col"][class*="shadow-lg"]:has(.editor-scroll-container):has(.markdown-body) .markdown-body {
  background: var(--runtime-surface-panel, #ffffff) !important;
  background-color: var(--runtime-surface-panel, #ffffff) !important;
  background-image: none !important;
  color: var(--runtime-color-text-primary, rgba(17, 24, 39, 0.88)) !important;
}

html.dark body[data-runtime-shell-ready="true"] div[class*="flex-col"][class*="shadow-lg"]:has(.editor-scroll-container):has(.markdown-body) > div[class*="justify-between"][class*="h-16"],
html.dark body[data-runtime-shell-ready="true"] div[class*="flex-col"][class*="shadow-lg"]:has(.editor-scroll-container):has(.markdown-body) .editor-scroll-container,
html.dark body[data-runtime-shell-ready="true"] div[class*="flex-col"][class*="shadow-lg"]:has(.editor-scroll-container):has(.markdown-body) .markdown-body {
  background: var(--runtime-surface-panel, #202020) !important;
  background-color: var(--runtime-surface-panel, #202020) !important;
  color: var(--runtime-color-text-primary, rgba(245, 245, 245, 0.92)) !important;
}

/* -------------------
 * 123. Assistant Avatar Transparent Surface
 * ------------------- */

html body[data-runtime-shell-ready="true"] :is(
  .ai-message .avatar,
  .ai-message .avatar > *,
  .ai-message .group-btn,
  .ai-message .group-btn > span,
  #image-wrapper .items-center.justify-center.mr-2.rounded-full.group-btn,
  #image-wrapper .items-center.justify-center.mr-2.rounded-full.group-btn > span,
  .flex.w-full.my-2.pb-3.items-start.flex-row > .items-center.justify-center.mr-2.rounded-full.group-btn,
  .flex.w-full.my-2.pb-3.items-start.flex-row > .items-center.justify-center.mr-2.rounded-full.group-btn > span
),
html.dark body[data-runtime-shell-ready="true"] :is(
  .ai-message .avatar,
  .ai-message .avatar > *,
  .ai-message .group-btn,
  .ai-message .group-btn > span,
  #image-wrapper .items-center.justify-center.mr-2.rounded-full.group-btn,
  #image-wrapper .items-center.justify-center.mr-2.rounded-full.group-btn > span,
  .flex.w-full.my-2.pb-3.items-start.flex-row > .items-center.justify-center.mr-2.rounded-full.group-btn,
  .flex.w-full.my-2.pb-3.items-start.flex-row > .items-center.justify-center.mr-2.rounded-full.group-btn > span
) {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] div[class*="flex-col"][class*="shadow-lg"]:has(.markdown-body),
html body[data-runtime-shell-ready="true"] div[class*="flex-col"][class*="shadow-lg"]:has(.markdown-body) > div[class*="justify-between"][class*="h-16"],
html body[data-runtime-shell-ready="true"] div[class*="flex-col"][class*="shadow-lg"]:has(.markdown-body) .markdown-body {
  background: var(--runtime-surface-panel, #ffffff) !important;
  background-color: var(--runtime-surface-panel, #ffffff) !important;
  background-image: none !important;
  color: var(--runtime-color-text-primary, rgba(17, 24, 39, 0.88)) !important;
}

html.dark body[data-runtime-shell-ready="true"] div[class*="flex-col"][class*="shadow-lg"]:has(.markdown-body),
html.dark body[data-runtime-shell-ready="true"] div[class*="flex-col"][class*="shadow-lg"]:has(.markdown-body) > div[class*="justify-between"][class*="h-16"],
html.dark body[data-runtime-shell-ready="true"] div[class*="flex-col"][class*="shadow-lg"]:has(.markdown-body) .markdown-body {
  background: #202020 !important;
  background-color: #202020 !important;
  background-image: none !important;
  color: rgba(245, 245, 245, 0.92) !important;
}

/* -------------------
 * 124. Sidebar Avatar Button Flat Surface
 * ------------------- */

html body[data-runtime-shell-ready="true"] :is(button, [role="button"]):has(img[alt="用户头像"]),
html body[data-runtime-shell-ready="true"] :is(button, [role="button"]):has(img[alt="用户头像"]):is(:hover, :active, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="footer"] button[aria-label="设置"],
html body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="footer"] button[aria-label="设置"]:is(:hover, :active, :focus, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="footer"] [role="button"][aria-label="设置"],
html body[data-runtime-shell-ready="true"] [data-runtime-sidebar-slot="footer"] [role="button"][aria-label="设置"]:is(:hover, :active, :focus, :focus-visible),
html.dark body[data-runtime-shell-ready="true"] :is(button, [role="button"]):has(img[alt="用户头像"]),
html.dark body[data-runtime-shell-ready="true"] :is(button, [role="button"]):has(img[alt="用户头像"]):is(:hover, :active, :focus, :focus-visible) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] :is(button, [role="button"]):has(img[alt="用户头像"]) :is(.avatar, img[alt="用户头像"]),
html body[data-runtime-shell-ready="true"] :is(button, [role="button"]):has(img[alt="用户头像"]) :is(.avatar, img[alt="用户头像"]):is(:hover, :active, :focus, :focus-visible),
html.dark body[data-runtime-shell-ready="true"] :is(button, [role="button"]):has(img[alt="用户头像"]) :is(.avatar, img[alt="用户头像"]),
html.dark body[data-runtime-shell-ready="true"] :is(button, [role="button"]):has(img[alt="用户头像"]) :is(.avatar, img[alt="用户头像"]):is(:hover, :active, :focus, :focus-visible) {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* -------------------
 * 125. Auth Logout Confirm Modal
 * ------------------- */

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"],
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"]
) {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  background: rgba(15, 23, 42, 0.18) !important;
  background-color: rgba(15, 23, 42, 0.18) !important;
  backdrop-filter: blur(12px) saturate(1.02) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-panel,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-panel
) {
  width: min(520px, calc(100vw - 48px)) !important;
  padding: 26px 30px 26px 26px !important;
  border: 1px solid rgba(15, 23, 42, 0.075) !important;
  border-radius: 22px !important;
  background: rgb(238, 241, 246) !important;
  background-color: rgb(238, 241, 246) !important;
  background-image: none !important;
  color: var(--runtime-color-text-primary, rgba(5, 5, 5, 0.9)) !important;
  box-shadow: 0 22px 64px rgba(15, 23, 42, 0.18) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-panel,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-panel
) {
  border-color: var(--runtime-border-subtle, rgba(255, 255, 255, 0.1)) !important;
  background: rgb(18, 24, 34) !important;
  background-color: rgb(18, 24, 34) !important;
  color: var(--runtime-color-text-primary, rgba(255, 255, 255, 0.92)) !important;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.34) !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-header,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-title,
html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-message,
html body[data-runtime-shell-ready="true"] [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-title,
html body[data-runtime-shell-ready="true"] [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-message {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  letter-spacing: 0 !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-title-break {
  display: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-title,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-title
) {
  color: var(--runtime-color-text-primary, rgba(5, 5, 5, 0.9)) !important;
  font-size: 18px !important;
  font-weight: 760 !important;
  line-height: 1.35 !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-title,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-title
) {
  color: var(--runtime-color-text-primary, rgba(255, 255, 255, 0.92)) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-message,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-message
) {
  margin-top: 8px !important;
  color: var(--runtime-color-text-secondary, rgba(5, 5, 5, 0.58)) !important;
  font-size: 14px !important;
  font-weight: 520 !important;
  line-height: 1.55 !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-message,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-message
) {
  color: var(--runtime-color-text-secondary, rgba(255, 255, 255, 0.64)) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-actions,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-actions
) {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 18px 0 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button
),
html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button
):is(:hover, :active, :focus, :focus-visible) {
  min-width: 74px !important;
  min-height: 36px !important;
  height: 36px !important;
  padding: 0 16px !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 680 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  box-shadow: none !important;
  outline: 0 !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"],
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-runtime-auth-confirm-action="cancel"]
) {
  background: rgba(15, 23, 42, 0.055) !important;
  background-color: rgba(15, 23, 42, 0.055) !important;
  color: rgba(15, 23, 42, 0.72) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"],
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-runtime-auth-confirm-action="cancel"]
):not(:disabled):is(:hover, :focus-visible) {
  background: rgba(15, 23, 42, 0.085) !important;
  background-color: rgba(15, 23, 42, 0.085) !important;
  color: rgba(15, 23, 42, 0.9) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button[data-tone="danger"],
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-tone="danger"]
) {
  background: rgba(153, 27, 27, 0.095) !important;
  background-color: rgba(153, 27, 27, 0.095) !important;
  color: rgba(153, 27, 27, 0.96) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button[data-tone="danger"],
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-tone="danger"]
):not(:disabled):is(:hover, :focus-visible) {
  background: rgba(153, 27, 27, 0.14) !important;
  background-color: rgba(153, 27, 27, 0.14) !important;
  color: rgba(127, 29, 29, 0.98) !important;
}

/* -------------------
 * 126. Browser Interaction Performance Guard
 * ------------------- */

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-landing-notice-overlay="true"] > div:first-child,
  [data-runtime-landing-notice-overlay="true"] > div.fixed.inset-0.bg-black.bg-opacity-50:first-child,
  .fixed.inset-0.bg-black.bg-opacity-50,
  #runtime-auth-shell-root .runtime-auth-shell-backdrop,
  [data-runtime-project-manager-modal="true"],
  [data-runtime-auth-confirm-modal="true"],
  [data-runtime-knowledge-base-dialog="true"]
) {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  .avatar,
  .h-7.w-7.rounded-lg,
  img.h-7.w-7.rounded-lg,
  button[data-runtime-header-model-button="true"] [data-runtime-header-model-arrow="true"],
  header button[aria-label="选择模型"] [data-runtime-header-model-arrow="true"],
  h2.rounded.my-3.text-center.text-base.text-gray-600.dark\:text-gray-400
) {
  animation: none !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] h2.rounded.my-3.text-center.text-base.text-gray-600.dark\:text-gray-400 {
  width: auto !important;
  max-width: 100% !important;
  white-space: normal !important;
  letter-spacing: 0 !important;
}

html body[data-runtime-shell-ready="true"] :is(
  button,
  [role="button"],
  .btn,
  .btn-icon,
  .menu-items,
  .tooltip,
  a
) {
  transition-duration: 80ms !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-app-square-visible="true"] [data-runtime-app-square-root="true"] {
  contain: layout style paint !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-app-square-visible="true"] [data-runtime-app-square-card="true"] {
  content-visibility: auto !important;
  contain: layout style paint !important;
  contain-intrinsic-size: 220px 156px !important;
  transition-duration: 80ms !important;
  animation: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08) !important;
}

html.dark body[data-runtime-shell-ready="true"][data-runtime-app-square-visible="true"] [data-runtime-app-square-card="true"] {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22) !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-app-square-visible="true"] [data-runtime-app-square-card="true"]:is(:hover, :focus-within) {
  transform: none !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12) !important;
}

html.dark body[data-runtime-shell-ready="true"][data-runtime-app-square-visible="true"] [data-runtime-app-square-card="true"]:is(:hover, :focus-within) {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28) !important;
}

html body[data-runtime-shell-ready="true"][data-runtime-app-square-visible="true"] img[data-runtime-app-square-image="true"] {
  content-visibility: auto !important;
  contain: layout paint !important;
  transition-duration: 80ms !important;
  animation: none !important;
  filter: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html body[data-runtime-shell-ready="true"] *,
  html body[data-runtime-shell-ready="true"] *::before,
  html body[data-runtime-shell-ready="true"] *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"],
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-runtime-auth-confirm-action="cancel"]
) {
  background: rgba(255, 255, 255, 0.075) !important;
  background-color: rgba(255, 255, 255, 0.075) !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"],
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-runtime-auth-confirm-action="cancel"]
):not(:disabled):is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, 0.11) !important;
  background-color: rgba(255, 255, 255, 0.11) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button[data-tone="danger"],
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-tone="danger"]
) {
  background: rgba(248, 113, 113, 0.14) !important;
  background-color: rgba(248, 113, 113, 0.14) !important;
  color: rgba(254, 202, 202, 0.94) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button[data-tone="danger"],
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-tone="danger"]
):not(:disabled):is(:hover, :focus-visible) {
  background: rgba(248, 113, 113, 0.2) !important;
  background-color: rgba(248, 113, 113, 0.2) !important;
  color: rgba(254, 226, 226, 0.98) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-header,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-header
) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: start !important;
  column-gap: 14px !important;
  width: 100% !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-header-actions,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-header-actions
) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  min-width: 0 !important;
  margin: -2px -4px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-actions,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-actions
) {
  display: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button[data-tone="danger"],
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-tone="danger"]
) {
  min-width: 82px !important;
  white-space: nowrap !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-close-button[data-runtime-project-manager-modal-action="cancel"],
html body[data-runtime-shell-ready="true"] [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-runtime-auth-confirm-action="cancel"] {
  position: static !important;
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  height: 32px !important;
  min-height: 32px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: var(--runtime-color-text-secondary, rgba(5, 5, 5, 0.56)) !important;
  font-size: 24px !important;
  font-weight: 520 !important;
  line-height: 1 !important;
  box-shadow: none !important;
  outline: 0 !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-close-button[data-runtime-project-manager-modal-action="cancel"]:not(:disabled):is(:hover, :focus-visible),
html body[data-runtime-shell-ready="true"] [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-runtime-auth-confirm-action="cancel"]:not(:disabled):is(:hover, :focus-visible) {
  background: rgba(15, 23, 42, 0.06) !important;
  background-color: rgba(15, 23, 42, 0.06) !important;
  color: var(--runtime-color-text-primary, rgba(5, 5, 5, 0.88)) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-close-button[data-runtime-project-manager-modal-action="cancel"],
html.dark body[data-runtime-shell-ready="true"] [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-runtime-auth-confirm-action="cancel"] {
  color: var(--runtime-color-text-secondary, rgba(255, 255, 255, 0.62)) !important;
}

html.dark body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-close-button[data-runtime-project-manager-modal-action="cancel"]:not(:disabled):is(:hover, :focus-visible),
html.dark body[data-runtime-shell-ready="true"] [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-runtime-auth-confirm-action="cancel"]:not(:disabled):is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--runtime-color-text-primary, rgba(255, 255, 255, 0.9)) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-panel,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-panel
) {
  position: relative !important;
  min-height: 142px !important;
  padding: 26px 30px 26px 26px !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-header,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-header
) {
  display: block !important;
  min-height: 36px !important;
  padding-right: 164px !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-title,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-title
) {
  max-width: 100% !important;
  min-height: 32px !important;
  padding-top: 1px !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-header-actions,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-header-actions
) {
  position: absolute !important;
  top: 22px !important;
  right: 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  margin: 0 !important;
  z-index: 2 !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-message,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-message
) {
  margin-top: 14px !important;
  padding-right: 34px !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button[data-tone="danger"],
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-tone="danger"]
) {
  height: 34px !important;
  min-height: 34px !important;
  min-width: 86px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
}

html body[data-runtime-shell-ready="true"] [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-close-button[data-runtime-project-manager-modal-action="cancel"],
html body[data-runtime-shell-ready="true"] [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-runtime-auth-confirm-action="cancel"] {
  width: 30px !important;
  min-width: 30px !important;
  max-width: 30px !important;
  height: 30px !important;
  min-height: 30px !important;
  margin: 0 !important;
  color: rgba(15, 23, 42, 0.56) !important;
  font-size: 22px !important;
}

/* Final logout confirm layout: match destructive conversation confirm modal. */
html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-panel,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-panel
) {
  width: min(506px, calc(100vw - 48px)) !important;
  min-height: 0 !important;
  padding: 26px 26px 22px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(15, 23, 42, 0.075) !important;
  background: rgb(238, 241, 246) !important;
  background-color: rgb(238, 241, 246) !important;
  background-image: none !important;
  box-shadow: 0 22px 64px rgba(15, 23, 42, 0.18) !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-panel,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-panel
) {
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgb(18, 24, 34) !important;
  background-color: rgb(18, 24, 34) !important;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.34) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-header,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-header
) {
  display: block !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-header-actions,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-header-actions
) {
  display: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-title,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-title
) {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--runtime-color-text-primary, rgba(5, 5, 5, 0.9)) !important;
  font-size: 20px !important;
  font-weight: 780 !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-title,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-title
) {
  color: rgba(255, 255, 255, 0.92) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-message,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-message
) {
  margin: 10px 0 0 !important;
  padding: 0 !important;
  color: var(--runtime-color-text-secondary, rgba(5, 5, 5, 0.62)) !important;
  font-size: 16px !important;
  font-weight: 520 !important;
  line-height: 1.55 !important;
}

html.dark body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-message,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-message
) {
  color: rgba(255, 255, 255, 0.66) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] .runtime-project-manager-modal-actions,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] .runtime-auth-confirm-actions
) {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 14px !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 20px 0 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button
),
html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button,
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button
):is(:hover, :active, :focus, :focus-visible) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 98px !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 26px !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  font-size: 16px !important;
  font-weight: 720 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  box-shadow: none !important;
  outline: 0 !important;
  transform: none !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"],
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-runtime-auth-confirm-action="cancel"]
) {
  width: auto !important;
  max-width: none !important;
  background: rgba(15, 23, 42, 0.055) !important;
  background-color: rgba(15, 23, 42, 0.055) !important;
  color: rgba(15, 23, 42, 0.62) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button[data-runtime-project-manager-modal-action="cancel"],
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-runtime-auth-confirm-action="cancel"]
):not(:disabled):is(:hover, :focus-visible) {
  background: rgba(15, 23, 42, 0.085) !important;
  background-color: rgba(15, 23, 42, 0.085) !important;
  color: rgba(15, 23, 42, 0.86) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button[data-tone="danger"],
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-tone="danger"]
) {
  background: rgba(153, 27, 27, 0.095) !important;
  background-color: rgba(153, 27, 27, 0.095) !important;
  color: rgba(153, 27, 27, 0.96) !important;
}

html body[data-runtime-shell-ready="true"] :is(
  [data-runtime-project-manager-modal="true"][data-runtime-project-manager-modal-variant="runtime-auth-logout-confirm"] button.runtime-project-manager-modal-button[data-tone="danger"],
  [data-runtime-auth-confirm-modal="true"][data-runtime-auth-confirm-modal-variant="runtime-auth-logout-confirm"] button.runtime-auth-confirm-button[data-tone="danger"]
):not(:disabled):is(:hover, :focus-visible) {
  background: rgba(153, 27, 27, 0.14) !important;
  background-color: rgba(153, 27, 27, 0.14) !important;
  color: rgba(127, 29, 29, 0.98) !important;
}
