.g9-global-menu {
  --g9-bg: rgba(255, 255, 255, .94);
  --g9-line: rgba(15, 23, 42, .12);
  --g9-ink: #172033;
  --g9-muted: #64748b;
  --g9-brand: #2563eb;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 2147483000;
  width: 214px;
  color: var(--g9-ink);
  font-family: "Noto Sans SC", "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
}

.sidebar .g9-global-menu,
aside .g9-global-menu,
[class*="sidebar"] .g9-global-menu,
[class*="Sidebar"] .g9-global-menu {
  position: static;
  width: auto;
  margin: 14px 0 18px;
  z-index: auto;
}

.g9-menu-toggle {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--g9-line);
  border-radius: 10px;
  background: var(--g9-bg);
  color: inherit;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .14);
  cursor: pointer;
  padding: 8px 10px;
  text-align: left;
}

.sidebar .g9-menu-toggle,
aside .g9-menu-toggle,
[class*="sidebar"] .g9-menu-toggle,
[class*="Sidebar"] .g9-menu-toggle {
  box-shadow: none;
}

.g9-menu-mark {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #0f766e);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.g9-menu-title {
  min-width: 0;
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.g9-menu-title strong {
  font-size: 13px;
  letter-spacing: 0;
}

.g9-menu-title span {
  color: var(--g9-muted);
  font-size: 11px;
  white-space: nowrap;
}

.g9-menu-arrow {
  margin-left: auto;
  color: var(--g9-muted);
  font-size: 12px;
}

.g9-menu-panel {
  display: grid;
  gap: 4px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid var(--g9-line);
  border-radius: 10px;
  background: var(--g9-bg);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
}

.g9-global-menu:not(.is-open) .g9-menu-panel {
  display: none;
}

.sidebar .g9-menu-panel,
aside .g9-menu-panel,
[class*="sidebar"] .g9-menu-panel,
[class*="Sidebar"] .g9-menu-panel {
  box-shadow: none;
}

.g9-menu-panel a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--g9-ink);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.25;
}

.g9-menu-panel a:hover,
.g9-menu-panel a.is-active {
  background: rgba(37, 99, 235, .10);
  color: var(--g9-brand);
}

[data-g9-logo-static="true"] {
  cursor: default;
}

[data-g9-logo-static="true"] .brand-text small {
  color: inherit;
}

@media (max-width: 760px) {
  .g9-global-menu {
    top: 10px;
    left: 10px;
    width: min(220px, calc(100vw - 20px));
  }
}
