[data-v-0355add9]:root {
  --bg-primary: #fafafa;
  --bg-secondary: #f0f0f0;
  --bg-sidebar: #f5f5f5;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --bg-input: #ffffff;
  --border-color: #e0e0e0;
  --border-light: #ebebeb;
  --accent-primary: #333333;
  --accent-hover: #1a1a1a;
  --accent-muted: #888888;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-muted: #999999;
  --success: #2e7d32;
  --error: #c62828;
  --warning: #f57f17;
  --msg-user-bg: #f5f5f5;
  --msg-assistant-bg: #f5f5f5;
  --msg-system-border: #bdbdbd;
  --code-bg: #f4f4f4;
  --text-on-accent: #ffffff;
  --text-on-overlay: #ffffff;
  --accent-info: #4a90d9;
  --accent-primary-rgb: 51, 51, 51;
  --accent-hover-rgb: 26, 26, 26;
  --text-primary-rgb: 26, 26, 26;
  --text-muted-rgb: 153, 153, 153;
  --success-rgb: 46, 125, 50;
  --error-rgb: 198, 40, 40;
  --warning-rgb: 245, 127, 23;
  --accent-info-rgb: 74, 144, 217;
}
.dark[data-v-0355add9] {
  --bg-primary: #1a1a1a;
  --bg-secondary: #252525;
  --bg-sidebar: #202020;
  --bg-card: #333333;
  --bg-card-hover: #333333;
  --bg-input: #2a2a2a;
  --border-color: #3a3a3a;
  --border-light: #333333;
  --accent-primary: #e0e0e0;
  --accent-hover: #f5f5f5;
  --accent-muted: #888888;
  --text-primary: #f0f0f0;
  --text-secondary: #c0c0c0;
  --text-muted: #888888;
  --success: #66bb6a;
  --error: #ef5350;
  --warning: #ffb74d;
  --msg-user-bg: #252525;
  --msg-assistant-bg: #252525;
  --msg-system-border: #555555;
  --code-bg: #1e1e1e;
  --text-on-accent: #1a1a1a;
  --text-on-overlay: #ffffff;
  --accent-info: #6ba3d6;
  --accent-primary-rgb: 240, 240, 240;
  --accent-hover-rgb: 245, 245, 245;
  --text-primary-rgb: 240, 240, 240;
  --text-muted-rgb: 136, 136, 136;
  --success-rgb: 102, 187, 106;
  --error-rgb: 239, 83, 80;
  --warning-rgb: 255, 183, 77;
  --accent-info-rgb: 107, 163, 214;
}
.comic[data-v-0355add9] {
  --border-color: #1a1a1a;
  --border-light: #555555;
  --msg-system-border: #1a1a1a;
  --font-ui: 'Comic Neue', 'ZCOOL KuaiLe', 'Zen Maru Gothic', 'Gaegu', cursive, sans-serif;
  --comic-border-width: 2.5px;
  --comic-shadow: 3px 3px 0px rgba(0, 0, 0, 0.15);
}
.dark.comic[data-v-0355add9] {
  --border-color: #666666;
  --border-light: #555555;
  --msg-system-border: #888888;
  --comic-shadow: 3px 3px 0px rgba(255, 255, 255, 0.08);
}
.sidebar[data-v-0355add9] {
  position: relative;
  width: 240px;
  height: calc(100 * var(--vh));
  background-color: var(--bg-sidebar);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding: 8px 12px 20px;
  flex-shrink: 0;
  transition: width 0.25s ease;
}
.sidebar-nav[data-v-0355add9] {
  flex: 1;
  display: flex;
  padding-top: 8px;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  min-height: 0;
  scrollbar-width: none;
}
.sidebar-nav[data-v-0355add9]::-webkit-scrollbar {
  display: none;
}
.nav-group[data-v-0355add9] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-group.nav-group-bottom[data-v-0355add9] {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border-color);
}
.nav-group-items[data-v-0355add9] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-group-label[data-v-0355add9] {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 8px 12px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  border-radius: 6px;
  transition: color 0.15s ease;
}
.nav-group-label[data-v-0355add9]:hover {
  color: var(--text-secondary);
}
.nav-group:first-child .nav-group-label[data-v-0355add9] {
  padding-top: 0;
}
.nav-group-arrow[data-v-0355add9] {
  transition: transform 0.15s ease;
  flex-shrink: 0;
}
.nav-group-arrow.collapsed[data-v-0355add9] {
  transform: rotate(-90deg);
}
.nav-item[data-v-0355add9] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: none;
  background: none;
  appearance: none;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100%;
  text-align: left;
}
.nav-item[data-v-0355add9]:hover {
  background-color: rgba(var(--accent-primary-rgb), 0.06);
  color: var(--text-primary);
}
.nav-item.active[data-v-0355add9] {
  background-color: rgba(var(--accent-primary-rgb), 0.12);
  color: var(--accent-primary);
}
.nav-item .beta-tag[data-v-0355add9] {
  font-size: 10px;
  color: var(--text-muted);
  margin-left: 2px;
}
.sidebar-top-actions[data-v-0355add9] {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.sidebar-return-tab[data-v-0355add9] {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  font-size: 13px;
}
.sidebar.collapsed[data-v-0355add9] {
  width: 64px;
  padding: 8px 8px 12px;
  overflow: hidden;
}
.sidebar.collapsed .collapse-btn[data-v-0355add9] {
  display: flex;
  margin: 0;
}
.sidebar.collapsed .sidebar-top-actions[data-v-0355add9] {
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}
.sidebar.collapsed .sidebar-return-tab[data-v-0355add9] {
  width: 100%;
  flex: 0 0 auto;
  padding: 10px 4px;
}
.sidebar.collapsed .nav-group-label[data-v-0355add9] {
  justify-content: center;
  gap: 2px;
  padding: 8px 0 4px;
  letter-spacing: 0;
}
.sidebar.collapsed .nav-group-label span[data-v-0355add9] {
  max-width: 36px;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sidebar.collapsed .nav-item[data-v-0355add9] {
  justify-content: center;
  padding: 10px 4px;
  gap: 0;
}
.sidebar.collapsed .nav-item span[data-v-0355add9] {
  display: none;
}
.sidebar.collapsed .nav-item svg[data-v-0355add9] {
  flex-shrink: 0;
}
.collapse-btn[data-v-0355add9] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  appearance: none;
  text-decoration: none;
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
  transition: all 0.15s ease;
}
.collapse-btn[data-v-0355add9]:hover {
  color: var(--text-primary);
  background-color: rgba(var(--accent-primary-rgb), 0.08);
}
@media (max-width: 768px) {
.sidebar[data-v-0355add9] {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
}
.sidebar.open[data-v-0355add9] {
    transform: translateX(0);
}
.sidebar .input-sm[data-v-0355add9] {
    width: 90px;
}
}[data-v-8856e783]:root {
  --bg-primary: #fafafa;
  --bg-secondary: #f0f0f0;
  --bg-sidebar: #f5f5f5;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --bg-input: #ffffff;
  --border-color: #e0e0e0;
  --border-light: #ebebeb;
  --accent-primary: #333333;
  --accent-hover: #1a1a1a;
  --accent-muted: #888888;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-muted: #999999;
  --success: #2e7d32;
  --error: #c62828;
  --warning: #f57f17;
  --msg-user-bg: #f5f5f5;
  --msg-assistant-bg: #f5f5f5;
  --msg-system-border: #bdbdbd;
  --code-bg: #f4f4f4;
  --text-on-accent: #ffffff;
  --text-on-overlay: #ffffff;
  --accent-info: #4a90d9;
  --accent-primary-rgb: 51, 51, 51;
  --accent-hover-rgb: 26, 26, 26;
  --text-primary-rgb: 26, 26, 26;
  --text-muted-rgb: 153, 153, 153;
  --success-rgb: 46, 125, 50;
  --error-rgb: 198, 40, 40;
  --warning-rgb: 245, 127, 23;
  --accent-info-rgb: 74, 144, 217;
}
.dark[data-v-8856e783] {
  --bg-primary: #1a1a1a;
  --bg-secondary: #252525;
  --bg-sidebar: #202020;
  --bg-card: #333333;
  --bg-card-hover: #333333;
  --bg-input: #2a2a2a;
  --border-color: #3a3a3a;
  --border-light: #333333;
  --accent-primary: #e0e0e0;
  --accent-hover: #f5f5f5;
  --accent-muted: #888888;
  --text-primary: #f0f0f0;
  --text-secondary: #c0c0c0;
  --text-muted: #888888;
  --success: #66bb6a;
  --error: #ef5350;
  --warning: #ffb74d;
  --msg-user-bg: #252525;
  --msg-assistant-bg: #252525;
  --msg-system-border: #555555;
  --code-bg: #1e1e1e;
  --text-on-accent: #1a1a1a;
  --text-on-overlay: #ffffff;
  --accent-info: #6ba3d6;
  --accent-primary-rgb: 240, 240, 240;
  --accent-hover-rgb: 245, 245, 245;
  --text-primary-rgb: 240, 240, 240;
  --text-muted-rgb: 136, 136, 136;
  --success-rgb: 102, 187, 106;
  --error-rgb: 239, 83, 80;
  --warning-rgb: 255, 183, 77;
  --accent-info-rgb: 107, 163, 214;
}
.comic[data-v-8856e783] {
  --border-color: #1a1a1a;
  --border-light: #555555;
  --msg-system-border: #1a1a1a;
  --font-ui: 'Comic Neue', 'ZCOOL KuaiLe', 'Zen Maru Gothic', 'Gaegu', cursive, sans-serif;
  --comic-border-width: 2.5px;
  --comic-shadow: 3px 3px 0px rgba(0, 0, 0, 0.15);
}
.dark.comic[data-v-8856e783] {
  --border-color: #666666;
  --border-light: #555555;
  --msg-system-border: #888888;
  --comic-shadow: 3px 3px 0px rgba(255, 255, 255, 0.08);
}
.desktop-titlebar[data-v-8856e783] {
  height: 36px;
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-sidebar);
  color: var(--text-primary);
  user-select: none;
  -webkit-app-region: drag;
}
.desktop-titlebar.mac[data-v-8856e783] {
  padding-left: 82px;
}
.desktop-titlebar__drag[data-v-8856e783] {
  min-width: 0;
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.desktop-titlebar__brand[data-v-8856e783] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 0 12px;
}
.desktop-titlebar__logo[data-v-8856e783] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
}
.desktop-titlebar__title[data-v-8856e783] {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}
.desktop-titlebar__controls[data-v-8856e783] {
  height: 100%;
  display: flex;
  align-items: stretch;
  -webkit-app-region: no-drag;
}
.desktop-window-btn[data-v-8856e783] {
  width: 46px;
  height: 100%;
  border: 0;
  border-radius: 0;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--text-secondary);
  background: transparent;
  cursor: default;
}
.desktop-window-btn svg[data-v-8856e783] {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.desktop-window-btn[data-v-8856e783]:hover {
  color: var(--text-primary);
  background: rgba(var(--text-muted-rgb), 0.14);
}
.desktop-window-btn.close[data-v-8856e783]:hover {
  color: #ffffff;
  background: #c42b1c;
}[data-v-0e6f8225]:root {
  --bg-primary: #fafafa;
  --bg-secondary: #f0f0f0;
  --bg-sidebar: #f5f5f5;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --bg-input: #ffffff;
  --border-color: #e0e0e0;
  --border-light: #ebebeb;
  --accent-primary: #333333;
  --accent-hover: #1a1a1a;
  --accent-muted: #888888;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-muted: #999999;
  --success: #2e7d32;
  --error: #c62828;
  --warning: #f57f17;
  --msg-user-bg: #f5f5f5;
  --msg-assistant-bg: #f5f5f5;
  --msg-system-border: #bdbdbd;
  --code-bg: #f4f4f4;
  --text-on-accent: #ffffff;
  --text-on-overlay: #ffffff;
  --accent-info: #4a90d9;
  --accent-primary-rgb: 51, 51, 51;
  --accent-hover-rgb: 26, 26, 26;
  --text-primary-rgb: 26, 26, 26;
  --text-muted-rgb: 153, 153, 153;
  --success-rgb: 46, 125, 50;
  --error-rgb: 198, 40, 40;
  --warning-rgb: 245, 127, 23;
  --accent-info-rgb: 74, 144, 217;
}
.dark[data-v-0e6f8225] {
  --bg-primary: #1a1a1a;
  --bg-secondary: #252525;
  --bg-sidebar: #202020;
  --bg-card: #333333;
  --bg-card-hover: #333333;
  --bg-input: #2a2a2a;
  --border-color: #3a3a3a;
  --border-light: #333333;
  --accent-primary: #e0e0e0;
  --accent-hover: #f5f5f5;
  --accent-muted: #888888;
  --text-primary: #f0f0f0;
  --text-secondary: #c0c0c0;
  --text-muted: #888888;
  --success: #66bb6a;
  --error: #ef5350;
  --warning: #ffb74d;
  --msg-user-bg: #252525;
  --msg-assistant-bg: #252525;
  --msg-system-border: #555555;
  --code-bg: #1e1e1e;
  --text-on-accent: #1a1a1a;
  --text-on-overlay: #ffffff;
  --accent-info: #6ba3d6;
  --accent-primary-rgb: 240, 240, 240;
  --accent-hover-rgb: 245, 245, 245;
  --text-primary-rgb: 240, 240, 240;
  --text-muted-rgb: 136, 136, 136;
  --success-rgb: 102, 187, 106;
  --error-rgb: 239, 83, 80;
  --warning-rgb: 255, 183, 77;
  --accent-info-rgb: 107, 163, 214;
}
.comic[data-v-0e6f8225] {
  --border-color: #1a1a1a;
  --border-light: #555555;
  --msg-system-border: #1a1a1a;
  --font-ui: 'Comic Neue', 'ZCOOL KuaiLe', 'Zen Maru Gothic', 'Gaegu', cursive, sans-serif;
  --comic-border-width: 2.5px;
  --comic-shadow: 3px 3px 0px rgba(0, 0, 0, 0.15);
}
.dark.comic[data-v-0e6f8225] {
  --border-color: #666666;
  --border-light: #555555;
  --msg-system-border: #888888;
  --comic-shadow: 3px 3px 0px rgba(255, 255, 255, 0.08);
}
.session-search-modal[data-v-0e6f8225] {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.search-header[data-v-0e6f8225] {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.search-title[data-v-0e6f8225] {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.search-hint[data-v-0e6f8225] {
  font-size: 12px;
  color: var(--text-muted);
}
.search-scope[data-v-0e6f8225] {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.search-body[data-v-0e6f8225] {
  max-height: min(60vh, 540px);
  overflow: hidden;
}
.search-empty[data-v-0e6f8225] {
  padding: 28px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
.result-list[data-v-0e6f8225] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: min(60vh, 540px);
  overflow-y: auto;
  padding-right: 2px;
}
.result-item[data-v-0e6f8225] {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
}
.result-item[data-v-0e6f8225]:hover, .result-item.active[data-v-0e6f8225] {
  border-color: var(--accent-muted);
  background: rgba(var(--accent-primary-rgb), 0.04);
}
.result-main[data-v-0e6f8225] {
  flex: 1;
  min-width: 0;
}
.result-title-row[data-v-0e6f8225] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.result-title[data-v-0e6f8225] {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.result-source[data-v-0e6f8225] {
  flex-shrink: 0;
  font-size: 11px;
  color: var(--text-muted);
}
.result-snippet[data-v-0e6f8225] {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.result-meta[data-v-0e6f8225] {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.result-match[data-v-0e6f8225] {
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
}
.search-footer[data-v-0e6f8225] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}
@media (max-width: 768px) {
[data-v-0e6f8225] .n-modal-body-wrapper {
    width: calc(100vw - 24px);
}
.search-header[data-v-0e6f8225] {
    flex-direction: column;
    align-items: flex-start;
}
.result-item[data-v-0e6f8225] {
    flex-direction: column;
    align-items: flex-start;
}
.result-meta[data-v-0e6f8225] {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}
}.credential-warning-text[data-v-1f213654] {
  margin: 0;
  line-height: 1.6;
}[data-v-7a7a37b1]:root {
  --bg-primary: #fafafa;
  --bg-secondary: #f0f0f0;
  --bg-sidebar: #f5f5f5;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --bg-input: #ffffff;
  --border-color: #e0e0e0;
  --border-light: #ebebeb;
  --accent-primary: #333333;
  --accent-hover: #1a1a1a;
  --accent-muted: #888888;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-muted: #999999;
  --success: #2e7d32;
  --error: #c62828;
  --warning: #f57f17;
  --msg-user-bg: #f5f5f5;
  --msg-assistant-bg: #f5f5f5;
  --msg-system-border: #bdbdbd;
  --code-bg: #f4f4f4;
  --text-on-accent: #ffffff;
  --text-on-overlay: #ffffff;
  --accent-info: #4a90d9;
  --accent-primary-rgb: 51, 51, 51;
  --accent-hover-rgb: 26, 26, 26;
  --text-primary-rgb: 26, 26, 26;
  --text-muted-rgb: 153, 153, 153;
  --success-rgb: 46, 125, 50;
  --error-rgb: 198, 40, 40;
  --warning-rgb: 245, 127, 23;
  --accent-info-rgb: 74, 144, 217;
}
.dark[data-v-7a7a37b1] {
  --bg-primary: #1a1a1a;
  --bg-secondary: #252525;
  --bg-sidebar: #202020;
  --bg-card: #333333;
  --bg-card-hover: #333333;
  --bg-input: #2a2a2a;
  --border-color: #3a3a3a;
  --border-light: #333333;
  --accent-primary: #e0e0e0;
  --accent-hover: #f5f5f5;
  --accent-muted: #888888;
  --text-primary: #f0f0f0;
  --text-secondary: #c0c0c0;
  --text-muted: #888888;
  --success: #66bb6a;
  --error: #ef5350;
  --warning: #ffb74d;
  --msg-user-bg: #252525;
  --msg-assistant-bg: #252525;
  --msg-system-border: #555555;
  --code-bg: #1e1e1e;
  --text-on-accent: #1a1a1a;
  --text-on-overlay: #ffffff;
  --accent-info: #6ba3d6;
  --accent-primary-rgb: 240, 240, 240;
  --accent-hover-rgb: 245, 245, 245;
  --text-primary-rgb: 240, 240, 240;
  --text-muted-rgb: 136, 136, 136;
  --success-rgb: 102, 187, 106;
  --error-rgb: 239, 83, 80;
  --warning-rgb: 255, 183, 77;
  --accent-info-rgb: 107, 163, 214;
}
.comic[data-v-7a7a37b1] {
  --border-color: #1a1a1a;
  --border-light: #555555;
  --msg-system-border: #1a1a1a;
  --font-ui: 'Comic Neue', 'ZCOOL KuaiLe', 'Zen Maru Gothic', 'Gaegu', cursive, sans-serif;
  --comic-border-width: 2.5px;
  --comic-shadow: 3px 3px 0px rgba(0, 0, 0, 0.15);
}
.dark.comic[data-v-7a7a37b1] {
  --border-color: #666666;
  --border-light: #555555;
  --msg-system-border: #888888;
  --comic-shadow: 3px 3px 0px rgba(255, 255, 255, 0.08);
}
.app-shell[data-v-7a7a37b1] {
  height: calc(100 * var(--vh));
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-primary);
}
.app-layout[data-v-7a7a37b1] {
  display: flex;
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.app-layout.no-sidebar[data-v-7a7a37b1] {
  display: block;
}
.app-shell.desktop .app-layout[data-v-7a7a37b1] {
  --vh: calc(1vh - 0.36px);
}
.app-main[data-v-7a7a37b1] {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
  background-color: var(--bg-primary);
}
.no-sidebar .app-main[data-v-7a7a37b1] {
  height: 100%;
}
.node-warning-bar[data-v-7a7a37b1] {
  flex: 0 0 auto;
  width: 100%;
  z-index: 100;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 500;
  color: #b45309;
  background-color: #fef3c7;
  border-bottom: 1px solid #fde68a;
  text-align: center;
  line-height: 1.4;
}:root {
  --bg-primary: #fafafa;
  --bg-secondary: #f0f0f0;
  --bg-sidebar: #f5f5f5;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --bg-input: #ffffff;
  --border-color: #e0e0e0;
  --border-light: #ebebeb;
  --accent-primary: #333333;
  --accent-hover: #1a1a1a;
  --accent-muted: #888888;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-muted: #999999;
  --success: #2e7d32;
  --error: #c62828;
  --warning: #f57f17;
  --msg-user-bg: #f5f5f5;
  --msg-assistant-bg: #f5f5f5;
  --msg-system-border: #bdbdbd;
  --code-bg: #f4f4f4;
  --text-on-accent: #ffffff;
  --text-on-overlay: #ffffff;
  --accent-info: #4a90d9;
  --accent-primary-rgb: 51, 51, 51;
  --accent-hover-rgb: 26, 26, 26;
  --text-primary-rgb: 26, 26, 26;
  --text-muted-rgb: 153, 153, 153;
  --success-rgb: 46, 125, 50;
  --error-rgb: 198, 40, 40;
  --warning-rgb: 245, 127, 23;
  --accent-info-rgb: 74, 144, 217;
}

.dark {
  --bg-primary: #1a1a1a;
  --bg-secondary: #252525;
  --bg-sidebar: #202020;
  --bg-card: #333333;
  --bg-card-hover: #333333;
  --bg-input: #2a2a2a;
  --border-color: #3a3a3a;
  --border-light: #333333;
  --accent-primary: #e0e0e0;
  --accent-hover: #f5f5f5;
  --accent-muted: #888888;
  --text-primary: #f0f0f0;
  --text-secondary: #c0c0c0;
  --text-muted: #888888;
  --success: #66bb6a;
  --error: #ef5350;
  --warning: #ffb74d;
  --msg-user-bg: #252525;
  --msg-assistant-bg: #252525;
  --msg-system-border: #555555;
  --code-bg: #1e1e1e;
  --text-on-accent: #1a1a1a;
  --text-on-overlay: #ffffff;
  --accent-info: #6ba3d6;
  --accent-primary-rgb: 240, 240, 240;
  --accent-hover-rgb: 245, 245, 245;
  --text-primary-rgb: 240, 240, 240;
  --text-muted-rgb: 136, 136, 136;
  --success-rgb: 102, 187, 106;
  --error-rgb: 239, 83, 80;
  --warning-rgb: 255, 183, 77;
  --accent-info-rgb: 107, 163, 214;
}

.comic {
  --border-color: #1a1a1a;
  --border-light: #555555;
  --msg-system-border: #1a1a1a;
  --font-ui: 'Comic Neue', 'ZCOOL KuaiLe', 'Zen Maru Gothic', 'Gaegu', cursive, sans-serif;
  --comic-border-width: 2.5px;
  --comic-shadow: 3px 3px 0px rgba(0, 0, 0, 0.15);
}

.dark.comic {
  --border-color: #666666;
  --border-light: #555555;
  --msg-system-border: #888888;
  --comic-shadow: 3px 3px 0px rgba(255, 255, 255, 0.08);
}

.hljs-code-block {
  margin: 8px 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--code-bg);
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  white-space: normal;
}
.hljs-code-block .code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid var(--border-color);
}
.hljs-code-block .code-header .code-lang {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.hljs-code-block .code-header .copy-btn {
  font-size: 11px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 3px;
  transition: all 0.15s ease;
}
.hljs-code-block .code-header .copy-btn:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.05);
}
.hljs-code-block code.hljs {
  display: block;
  padding: 12px;
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: 13px;
  line-height: 1.5;
  overflow-x: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.hljs-code-block.hljs-unified-diff code.hljs {
  display: block;
  padding: 0;
  overflow-x: auto;
  white-space: pre;
  overflow-wrap: normal;
  word-break: normal;
  line-height: 1.45;
}
.hljs-code-block.hljs-unified-diff .diff-line {
  display: grid;
  grid-template-columns: 58px max-content;
  min-width: max-content;
  white-space: pre;
}
.hljs-code-block.hljs-unified-diff .diff-line-number {
  user-select: none;
  text-align: right;
  padding: 0 14px 0 10px;
  color: #94a3b8;
  background: rgba(15, 23, 42, 0.04);
  border-right: 1px solid rgba(148, 163, 184, 0.25);
}
.hljs-code-block.hljs-unified-diff .diff-line-content {
  padding: 0 12px;
  white-space: pre;
}
.hljs-code-block.hljs-unified-diff .diff-line-file-header {
  color: #475569;
  background: rgba(148, 163, 184, 0.16);
}
.hljs-code-block.hljs-unified-diff .diff-line-hunk-header {
  color: #1d4ed8;
  background: rgba(59, 130, 246, 0.12);
}
.hljs-code-block.hljs-unified-diff .diff-line-context-fold {
  color: #64748b;
  background: rgba(148, 163, 184, 0.1);
  font-style: italic;
}
.hljs-code-block.hljs-unified-diff .diff-line-added {
  color: #166534;
  background: rgba(34, 197, 94, 0.14);
}
.hljs-code-block.hljs-unified-diff .diff-line-added .diff-line-number {
  color: #15803d;
  background: rgba(34, 197, 94, 0.18);
}
.hljs-code-block.hljs-unified-diff .diff-line-removed {
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.12);
}
.hljs-code-block.hljs-unified-diff .diff-line-removed .diff-line-number {
  color: #dc2626;
  background: rgba(239, 68, 68, 0.18);
}

.hljs-code-block .hljs {
  color: #1f2937;
  background: none;
}
.hljs-code-block .hljs-keyword,
.hljs-code-block .hljs-selector-tag,
.hljs-code-block .hljs-meta .hljs-keyword {
  color: #7c3aed;
  font-weight: 600;
}
.hljs-code-block .hljs-string,
.hljs-code-block .hljs-attr,
.hljs-code-block .hljs-regexp,
.hljs-code-block .hljs-template-variable {
  color: #0f766e;
}
.hljs-code-block .hljs-number,
.hljs-code-block .hljs-literal,
.hljs-code-block .hljs-symbol,
.hljs-code-block .hljs-bullet {
  color: #b45309;
}
.hljs-code-block .hljs-comment,
.hljs-code-block .hljs-quote {
  color: #6b7280;
  font-style: italic;
}
.hljs-code-block .hljs-built_in,
.hljs-code-block .hljs-title.class_,
.hljs-code-block .hljs-title.function_ {
  color: #2563eb;
}
.hljs-code-block .hljs-type,
.hljs-code-block .hljs-variable,
.hljs-code-block .hljs-property,
.hljs-code-block .hljs-params {
  color: #b91c1c;
}
.hljs-code-block .hljs-tag,
.hljs-code-block .hljs-name,
.hljs-code-block .hljs-section,
.hljs-code-block .hljs-title {
  color: #1f2937;
}
.hljs-code-block .hljs-meta {
  color: #6b7280;
}

.dark .hljs-code-block .hljs {
  color: #e5e7eb;
}
.dark .hljs-code-block.hljs-unified-diff .diff-line-file-header {
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.18);
}
.dark .hljs-code-block.hljs-unified-diff .diff-line-number {
  color: #94a3b8;
  background: rgba(15, 23, 42, 0.28);
  border-right-color: rgba(148, 163, 184, 0.22);
}
.dark .hljs-code-block.hljs-unified-diff .diff-line-hunk-header {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.18);
}
.dark .hljs-code-block.hljs-unified-diff .diff-line-context-fold {
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.14);
}
.dark .hljs-code-block.hljs-unified-diff .diff-line-added {
  color: #86efac;
  background: rgba(34, 197, 94, 0.18);
}
.dark .hljs-code-block.hljs-unified-diff .diff-line-added .diff-line-number {
  color: #4ade80;
  background: rgba(34, 197, 94, 0.22);
}
.dark .hljs-code-block.hljs-unified-diff .diff-line-removed {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.18);
}
.dark .hljs-code-block.hljs-unified-diff .diff-line-removed .diff-line-number {
  color: #f87171;
  background: rgba(239, 68, 68, 0.22);
}
.dark .hljs-code-block .hljs-keyword,
.dark .hljs-code-block .hljs-selector-tag,
.dark .hljs-code-block .hljs-meta .hljs-keyword {
  color: #c084fc;
  font-weight: 600;
}
.dark .hljs-code-block .hljs-string,
.dark .hljs-code-block .hljs-attr,
.dark .hljs-code-block .hljs-regexp,
.dark .hljs-code-block .hljs-template-variable {
  color: #5eead4;
}
.dark .hljs-code-block .hljs-number,
.dark .hljs-code-block .hljs-literal,
.dark .hljs-code-block .hljs-symbol,
.dark .hljs-code-block .hljs-bullet {
  color: #fbbf24;
}
.dark .hljs-code-block .hljs-comment,
.dark .hljs-code-block .hljs-quote {
  color: #94a3b8;
  font-style: italic;
}
.dark .hljs-code-block .hljs-built_in,
.dark .hljs-code-block .hljs-title.class_,
.dark .hljs-code-block .hljs-title.function_ {
  color: #93c5fd;
}
.dark .hljs-code-block .hljs-type,
.dark .hljs-code-block .hljs-variable,
.dark .hljs-code-block .hljs-property,
.dark .hljs-code-block .hljs-params {
  color: #fca5a5;
}
.dark .hljs-code-block .hljs-tag,
.dark .hljs-code-block .hljs-name,
.dark .hljs-code-block .hljs-section,
.dark .hljs-code-block .hljs-title {
  color: #f3f4f6;
}
.dark .hljs-code-block .hljs-meta {
  color: #94a3b8;
}

@font-face {
  font-family: "Comic Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ComicNeue-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "ZCOOL KuaiLe";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ZCOOLKuaiLe-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ZenMaruGothic-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/ZenMaruGothic-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Gaegu";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/Gaegu-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Gaegu";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/Gaegu-Bold.ttf") format("truetype");
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

:root {
  --vh: 1vh;
}

@supports (height: 100dvh) {
  :root {
    --vh: 1dvh;
  }
}
html.theme-transitioning,
html.theme-transitioning *,
html.theme-transitioning *::before,
html.theme-transitioning *::after {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, fill 0.3s ease, stroke 0.3s ease !important;
}

html, body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#app {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-ui, "Inter", system-ui, -apple-system, sans-serif);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hermes-desktop-shell .n-drawer,
.hermes-desktop-shell .n-drawer *,
.hermes-desktop-shell .n-modal,
.hermes-desktop-shell .n-modal *,
.hermes-desktop-shell .n-dialog,
.hermes-desktop-shell .n-dialog *,
.hermes-desktop-shell .n-popover,
.hermes-desktop-shell .n-popover *,
.hermes-desktop-shell .n-dropdown,
.hermes-desktop-shell .n-dropdown *,
.hermes-desktop-shell .n-select-menu,
.hermes-desktop-shell .n-select-menu *,
.hermes-desktop-shell .n-base-select-menu,
.hermes-desktop-shell .n-base-select-menu *,
.hermes-desktop-shell .n-message-container,
.hermes-desktop-shell .n-message-container *,
.hermes-desktop-shell .n-notification-container,
.hermes-desktop-shell .n-notification-container *,
.hermes-desktop-shell .drawer-overlay,
.hermes-desktop-shell .drawer-panel,
.hermes-desktop-shell .drawer-panel * {
  -webkit-app-region: no-drag;
}

code, pre, .mono {
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
}
a:hover {
  color: var(--accent-hover);
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-track-piece {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) transparent;
}

::selection {
  background: rgba(var(--accent-primary-rgb), 0.3);
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 20px;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.header-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.input-sm {
  width: 90px;
}

.input-md {
  width: 200px;
}

.input-lg {
  width: 300px;
}

.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.hamburger-btn {
  display: none;
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 99;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-card);
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .mobile-backdrop {
    display: block;
  }
  .hamburger-btn {
    display: flex;
  }
  .page-header {
    padding: 16px 12px 16px 52px !important;
  }
  .input-sm,
  .input-md,
  .input-lg {
    width: 100%;
  }
}
@media (max-width: 768px) {
  input,
  textarea,
  select,
  .n-input,
  .n-input__input-element,
  .n-input__textarea-el,
  .n-input__textarea-element {
    font-size: 16px !important;
  }
}