/* ============================================
   v6.css — Graph rebuild, time tracker, AI floating, custom icons
   ============================================ */

/* Mind Map: kill parent scroll, force fill — same trick as Chat/Whiteboard */
#editor-scroll.gv-active { overflow: hidden !important; }
#editor-scroll.gv-active #special-view {
  height: 100%; display: flex; flex-direction: column;
  flex: 1; min-height: 0;
}
#editor-scroll.gv-active .gv-root { flex: 1; min-height: 0; }

/* Time Tracker: same trick */
#editor-scroll.tt-active { overflow: hidden !important; }
#editor-scroll.tt-active #special-view {
  height: 100%; display: flex; flex-direction: column;
  flex: 1; min-height: 0;
}

/* ============================================
   GRAPH VIEW (rebuilt, Obsidian-like)
   ============================================ */
.gv-root {
  display: flex; flex-direction: column;
  height: 100%; width: 100%;
  background: var(--bg);
  overflow: hidden;
}
.gv-topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}
.gv-title {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px;
}
.gv-spacer { flex: 1; }
.gv-mode {
  background: transparent; border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 6px;
  font-size: 12px; color: var(--text-2); cursor: pointer;
  transition: all 0.15s;
}
.gv-mode:hover { background: var(--hover); color: var(--text); }
.gv-mode.active { background: var(--text); color: var(--bg); border-color: var(--text); }

.gv-body { display: flex; flex: 1; min-height: 0; }

.gv-panel {
  width: 260px; flex-shrink: 0;
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  padding: 12px 14px;
}
.gv-section { margin-bottom: 18px; }
.gv-section-h {
  font-size: 11px; font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.gv-input {
  width: 100%; padding: 6px 10px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 4px; font-size: 12.5px;
  color: var(--text); outline: none;
  transition: border-color 0.12s;
}
.gv-input:focus { border-color: var(--primary); }
.gv-check {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 0; cursor: pointer;
  font-size: 12.5px; color: var(--text);
}
.gv-check input { cursor: pointer; }
.gv-slider { margin-bottom: 10px; }
.gv-slider-label {
  font-size: 11.5px; color: var(--text-2); margin-bottom: 4px;
}
.gv-slider input[type="range"] {
  width: 100%; accent-color: var(--primary);
}
.gv-groups { display: flex; flex-direction: column; gap: 6px; margin-bottom: 8px; }
.gv-group {
  display: flex; gap: 4px; align-items: center;
}
.gv-group-q { flex: 1; font-size: 12px; padding: 4px 8px; }
.gv-color {
  width: 28px; height: 28px; padding: 0;
  border: 1px solid var(--border); border-radius: 4px;
  cursor: pointer; background: transparent;
}
.gv-x {
  background: transparent; border: none;
  color: var(--text-3); width: 22px; height: 22px;
  cursor: pointer; font-size: 16px; line-height: 1;
  border-radius: 3px;
}
.gv-x:hover { background: rgba(235,87,87,0.12); color: var(--danger); }
.gv-new-group {
  width: 100%; padding: 6px;
  background: transparent; border: 1px dashed var(--border-strong);
  border-radius: 4px; color: var(--text-2);
  font-size: 12px; cursor: pointer;
  transition: all 0.15s;
}
.gv-new-group:hover { background: var(--hover); color: var(--text); }
.gv-anim-btn {
  width: 100%; padding: 7px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 4px; color: var(--text);
  font-size: 12px; cursor: pointer;
  transition: all 0.15s; margin-top: 8px;
}
.gv-anim-btn:hover { background: var(--hover); }
.gv-anim-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.gv-stage {
  flex: 1; min-width: 0;
  background:
    radial-gradient(circle at 50% 50%, var(--bg-2) 0%, var(--bg) 80%);
  position: relative; overflow: hidden;
  cursor: grab;
}
.gv-stage:active { cursor: grabbing; }
.gv-canvas { display: block; width: 100%; height: 100%; }
.gv-loading {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); font-size: 14px;
}

/* ============================================
   TIME TRACKER VIEW
   ============================================ */
.tt-root {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 32px 200px;
}
.tt-head { margin-bottom: 24px; }
.tt-title-wrap {
  display: flex; align-items: center; gap: 10px;
}
.tt-title-wrap h1 { margin: 0; font-size: 26px; font-weight: 700; }
.tt-sub { margin: 6px 0 0; color: var(--text-2); font-size: 14px; }

.tt-quick {
  display: flex; gap: 8px; align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 20px;
}
.tt-input {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 6px; padding: 8px 12px;
  font-size: 14px; color: var(--text);
  outline: none;
  flex: 1;
}
.tt-input:focus { border-color: var(--primary); }
.tt-start-btn {
  background: var(--primary); color: #fff; border: none;
  padding: 8px 16px; border-radius: 6px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: all 0.15s;
}
.tt-start-btn:hover { background: var(--primary-hover); transform: translateY(-1px); }

.tt-tabs {
  display: flex; gap: 4px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.tt-tab {
  background: transparent; border: none;
  padding: 8px 16px; cursor: pointer;
  font-size: 13.5px; color: var(--text-2);
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
}
.tt-tab:hover { color: var(--text); }
.tt-tab.active { color: var(--text); border-bottom-color: var(--primary); font-weight: 500; }

.tt-content { min-height: 200px; }

.tt-summary-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 18px;
}
.tt-summary-label { font-size: 12px; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.04em; }
.tt-summary-time { font-size: 36px; font-weight: 700; margin: 4px 0 12px; }

.tt-breakdown { display: flex; flex-direction: column; gap: 6px; }
.tt-breakdown-row {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 8px; border-radius: 4px;
}
.tt-breakdown-row:hover { background: var(--hover); }
.tt-pdot {
  display: inline-block;
  width: 12px; height: 12px; border-radius: 50%;
  flex-shrink: 0;
}
.tt-pname { flex: 1; font-size: 14px; }
.tt-ptime { font-family: var(--font-mono); font-size: 13px; color: var(--text-2); }

.tt-entry-list {
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
.tt-entry {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
}
.tt-entry:last-child { border-bottom: none; }
.tt-entry:hover { background: var(--hover); }
.tt-entry-info { flex: 1; min-width: 0; }
.tt-entry-task { font-size: 14px; font-weight: 500; }
.tt-entry-meta { font-size: 12px; color: var(--text-2); margin-top: 2px; }
.tt-entry-time { font-family: var(--font-mono); font-size: 13px; color: var(--text); }
.tt-icon-btn {
  background: transparent; border: none; cursor: pointer;
  width: 28px; height: 28px; border-radius: 4px;
  color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.12s;
}
.tt-icon-btn:hover { background: var(--bg-3); color: var(--text); }

.tt-date-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 4px 8px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  text-transform: capitalize;
}
.tt-date-total { font-family: var(--font-mono); }

.tt-empty {
  padding: 60px 20px; text-align: center;
  color: var(--text-2); font-size: 14px;
}

.tt-add-btn {
  width: 100%; padding: 10px;
  background: transparent; border: 1px dashed var(--border-strong);
  border-radius: 6px; color: var(--text-2);
  font-size: 13px; cursor: pointer;
  transition: all 0.15s;
}
.tt-add-btn:hover { background: var(--hover); color: var(--text); border-color: var(--primary); }

.tt-svg {
  width: 100%; max-height: 320px;
  margin-top: 10px;
  display: block;
}

.tt-heatmap {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(7, 1fr);
  gap: 3px;
  padding: 8px 0;
  overflow-x: auto;
}
.tt-cell {
  width: 12px; height: 12px;
  border-radius: 2px;
  cursor: help;
  transition: transform 0.1s;
}
.tt-cell:hover { transform: scale(1.4); outline: 1px solid var(--text-2); }

.tt-projects { display: flex; flex-direction: column; gap: 8px; }
.tt-project-card {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
}
.tt-project-left { display: flex; align-items: center; gap: 14px; flex: 1; }
.tt-project-name { font-weight: 500; font-size: 15px; }
.tt-project-total { font-size: 12px; color: var(--text-2); margin-top: 2px; }
.tt-project-acts { display: flex; gap: 4px; }

/* Floating timer widget (Dynamic Island) */
.tt-widget {
  position: fixed; top: 12px; left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 20, 20, 0.92);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  display: flex; align-items: center; gap: 10px;
  z-index: 998;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 2px 6px rgba(0,0,0,0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-size: 13px;
  user-select: none;
  cursor: pointer;
  animation: tt-w-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 90vw;
}
[data-theme="light"] .tt-widget {
  background: rgba(20, 20, 20, 0.92);
}
.tt-widget.collapsed {
  min-width: 180px;
}
.tt-widget.expanded {
  border-radius: 16px;
  padding: 14px 20px;
  min-width: 320px;
  flex-direction: column;
  align-items: stretch;
}
.tt-widget.expanded .tt-w-info {
  text-align: center;
}
.tt-widget.expanded .tt-w-actions {
  justify-content: center;
}
.tt-widget.hiding {
  opacity: 0;
  transform: translateX(-50%) translateY(-20px) scale(0.9);
}
@keyframes tt-w-in {
  0% { opacity: 0; transform: translateX(-50%) translateY(-20px) scale(0.85); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
.tt-w-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0;
  animation: tt-pulse 1.5s ease infinite;
}
.tt-w-dot.paused { animation: none; opacity: 0.5; }
@keyframes tt-pulse {
  0%, 100% { box-shadow: 0 0 0 0 currentColor; }
  50% { box-shadow: 0 0 0 6px transparent; }
}
.tt-w-info { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.tt-w-name { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tt-w-proj { font-size: 11px; opacity: 0.6; }
.tt-w-time { font-family: var(--font-mono); font-weight: 500; font-variant-numeric: tabular-nums; }
.tt-w-actions { display: flex; gap: 4px; }
.tt-w-btn {
  background: rgba(255,255,255,0.12);
  border: none; color: #fff;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.12s, transform 0.1s;
}
.tt-w-btn:hover { background: rgba(255,255,255,0.22); }
.tt-w-btn:active { transform: scale(0.92); }
.tt-w-btn.stop:hover { background: rgba(235,87,87,0.6); }

/* ============================================
   AI FLOATING BUTTON & MENU
   ============================================ */
.ai-floating {
  position: fixed;
  left: calc(var(--sidebar-width) + 16px);
  bottom: 16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9d70f5, #5b8def);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(91, 141, 239, 0.35), 0 2px 4px rgba(0,0,0,0.1);
  z-index: 90;
  transition: all 0.18s cubic-bezier(0.21, 0.61, 0.35, 1);
  animation: ai-fl-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ai-floating:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 22px rgba(91, 141, 239, 0.45), 0 2px 6px rgba(0,0,0,0.15);
}
.ai-floating:active { transform: scale(0.96); }
.ai-floating.hidden { display: none; }
@keyframes ai-fl-in {
  0% { opacity: 0; transform: scale(0.5) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.sidebar.collapsed ~ .main ~ .ai-floating,
body:has(.sidebar.collapsed) .ai-floating { left: 16px; }

.ai-fl-menu {
  position: fixed;
  left: calc(var(--sidebar-width) + 16px);
  bottom: 70px;
  width: 320px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15,15,15,0.18);
  padding: 8px;
  z-index: 99;
  animation: ai-fl-menu-in 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: bottom left;
}
@keyframes ai-fl-menu-in {
  0% { opacity: 0; transform: scale(0.92) translateY(8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.ai-fl-head {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
  font-size: 13px; font-weight: 500;
  color: var(--primary);
}
.ai-fl-item {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13.5px; color: var(--text);
  transition: background 0.1s;
}
.ai-fl-item:hover { background: var(--hover); }
.ai-fl-icon { width: 22px; flex-shrink: 0; text-align: center; }
.ai-fl-sep {
  height: 1px;
  background: var(--border);
  margin: 6px 4px;
}
.ai-fl-section {
  padding: 4px 10px 2px;
  font-size: 10px; font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.ai-fl-custom { padding: 6px 4px; }
.ai-fl-input {
  width: 100%;
  padding: 8px 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px; color: var(--text); outline: none;
}
.ai-fl-input:focus { border-color: var(--primary); }

/* ============================================
   ICON PICKER (custom monochrome icons)
   ============================================ */
.icon-picker-card {
  position: relative; z-index: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(15,15,15,0.18);
  width: 480px; max-width: 95vw;
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.icon-picker-tabs {
  display: flex; gap: 4px;
  border-bottom: 1px solid var(--border); padding-bottom: 8px;
}
.icon-picker-tab {
  background: transparent; border: none;
  padding: 4px 10px; border-radius: 4px;
  font-size: 12px; color: var(--text-2); cursor: pointer;
  transition: all 0.12s;
}
.icon-picker-tab:hover { background: var(--hover); color: var(--text); }
.icon-picker-tab.active { background: var(--hover-strong); color: var(--text); }
.icon-picker-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  max-height: 320px;
  overflow-y: auto;
}
.icon-picker-cell {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text);
  transition: all 0.12s;
  padding: 8px;
}
.icon-picker-cell:hover {
  background: var(--hover);
  transform: scale(1.1);
}
.icon-picker-cell svg { width: 100%; height: 100%; }
.icon-picker-actions {
  display: flex; justify-content: space-between; gap: 8px;
  border-top: 1px solid var(--border); padding-top: 10px;
}

/* Page icon styling when using custom SVG */
.page-icon.icon-svg {
  font-size: 0; line-height: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
}
.page-icon.icon-svg svg { width: 100%; height: 100%; }

.tr-icon.icon-svg {
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
}
.tr-icon.icon-svg svg { width: 16px; height: 16px; }

/* ============================================
   TYPEWRITER ANIMATION ON BLOCK INPUT
   ============================================ */
@keyframes typewriter-blip {
  0% { letter-spacing: 0; }
  50% { letter-spacing: 0.005em; }
  100% { letter-spacing: 0; }
}
.editable.typewriter-active {
  animation: typewriter-blip 0.05s ease;
}

/* Page enter animation - more cinematic */
.editor-blocks {
  animation: page-enter-cinematic 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes page-enter-cinematic {
  0% {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(4px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: translateY(0);
  }
}

.page-header {
  animation: page-header-enter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes page-header-enter {
  0% { opacity: 0; transform: translateY(-8px); filter: blur(2px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Stagger blocks individually */
.editor-blocks .block:nth-child(1) { animation-delay: 0.04s; }
.editor-blocks .block:nth-child(2) { animation-delay: 0.07s; }
.editor-blocks .block:nth-child(3) { animation-delay: 0.10s; }
.editor-blocks .block:nth-child(4) { animation-delay: 0.13s; }
.editor-blocks .block:nth-child(5) { animation-delay: 0.16s; }
.editor-blocks .block:nth-child(6) { animation-delay: 0.18s; }
.editor-blocks .block:nth-child(7) { animation-delay: 0.20s; }
.editor-blocks .block:nth-child(8) { animation-delay: 0.22s; }
.editor-blocks .block {
  animation: block-stagger-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
@keyframes block-stagger-in {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Sidebar tree row entry */
.tree-row {
  animation: tree-fade-in 0.25s ease backwards;
}
@keyframes tree-fade-in {
  0% { opacity: 0; transform: translateX(-4px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Button ripple/press */
button:not(:disabled):active {
  animation: btn-press 0.12s ease;
}
@keyframes btn-press {
  0% { transform: scale(1); }
  50% { transform: scale(0.96); }
  100% { transform: scale(1); }
}

/* Sidebar item glow on click */
.sb-item.active {
  position: relative;
}
.sb-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 3px; height: 60%;
  transform: translateY(-50%);
  background: var(--primary);
  border-radius: 0 2px 2px 0;
  animation: sb-active-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes sb-active-in {
  0% { height: 0; }
  100% { height: 60%; }
}


.action-button-wrap {
  display: inline-flex; gap: 6px; align-items: center;
}
.action-button-cfg {
  background: transparent; border: 1px solid var(--border);
  padding: 4px 8px; border-radius: 4px;
  color: var(--text-2); cursor: pointer;
  display: flex; align-items: center;
  transition: all 0.15s;
}
.action-button-cfg:hover { background: var(--hover); color: var(--text); }

/* Smooth chart resize */
.chart-block, .chart-svg {
  transition: max-height 0.3s ease;
}

/* Topbar icons: replace with custom inline */
.icon-btn svg, .sb-icon, .sb-item svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ============================================
   Graph view — segmented scope selector + premium tweaks
   ============================================ */
.gv-seg {
  display: inline-flex;
  gap: 0;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  border-radius: 9px;
  overflow: hidden;
  width: 100%;
  background: var(--bg-2);
}
.gv-seg-btn {
  flex: 1;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--border);
  color: var(--text-3);
  font-size: 11.5px;
  font-weight: 500;
  padding: 7px 6px;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease;
}
.gv-seg-btn:last-child { border-right: 0; }
.gv-seg-btn:hover { background: color-mix(in srgb, var(--text) 6%, transparent); color: var(--text); }
.gv-seg-btn.active {
  background: var(--text);
  color: var(--bg);
  font-weight: 600;
}

/* Style buttons subtle premium */
.gv-style-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.gv-style-btn {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  transition: border-color 140ms ease, transform 140ms ease;
}
.gv-style-btn:hover { border-color: color-mix(in srgb, var(--text) 28%, var(--border)); }
.gv-style-btn.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}


/* Modo cine: vignette sutil + grano */
.gv-stage { position: relative; }
.gv-stage.gv-cinematic::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.5) 100%);
  z-index: 5;
  mix-blend-mode: multiply;
}
.gv-stage.gv-cinematic::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.07 0'/></filter><rect width='64' height='64' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  z-index: 6;
  mix-blend-mode: overlay;
}


.gv-scope-badge {
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.2px;
}
