/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  --bg: #0e1116;
  --panel: #151a22;
  --line: #232b36;
  --text: #e6e9ef;
  --muted: #8b94a3;
  --accent: #6ea8fe;
}

* {
  box-sizing: border-box;
}

html, body {
  background: var(--bg);
  height: 100%;
  color: var(--text);
  margin: 0;
  font: 15px / 1.5 system-ui, -apple-system, Segoe UI, sans-serif;
}

.shell {
  flex-direction: column;
  height: 100vh;
  display: flex;
}

.map {
  border-bottom: 1px solid var(--line);
  flex: 50%;
  position: relative;
  overflow: hidden;
}

.detail {
  background: var(--panel);
  flex: 50%;
  overflow: auto;
}

.placeholder {
  height: 100%;
  color: var(--muted);
  place-items: center;
  display: grid;
}

.map .placeholder {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.canvas {
  cursor: grab;
  width: 100%;
  height: 100%;
  display: block;
}

.canvas:active {
  cursor: grabbing;
}

.edge {
  fill: none;
  stroke: var(--line);
  stroke-width: 1.5px;
}

.node rect {
  fill: #1b2230;
  stroke: #2e3948;
  stroke-width: 1px;
  transition: fill .12s;
}

.node text {
  fill: var(--text);
  pointer-events: none;
  font-size: 13px;
}

.node {
  cursor: pointer;
}

.node:hover rect {
  fill: #232c3c;
}

.node.focus rect {
  fill: #1d2a44;
  stroke: var(--accent);
  stroke-width: 2px;
}

.node.stub rect {
  fill: #161c26;
  stroke-dasharray: 4 3;
}

.node.stub text {
  fill: var(--muted);
}

.node.expanding rect {
  stroke: var(--accent);
  animation: 1.2s ease-in-out infinite pulse;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .45;
  }
}

.group-label {
  fill: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 11px;
}

.search {
  z-index: 2;
  gap: 6px;
  display: flex;
  position: absolute;
  top: 12px;
  left: 12px;
}

.search input, .search button {
  color: var(--text);
  font: inherit;
  background: #1b2230;
  border: 1px solid #2e3948;
  border-radius: 6px;
  padding: 7px 10px;
}

.search button {
  cursor: pointer;
}

.search button:disabled {
  opacity: .5;
  cursor: default;
}

.panel {
  max-width: 760px;
  padding: 20px 24px;
}

.panel h1 {
  margin: 0 0 6px;
  font-size: 22px;
}

.lead {
  margin: 0 0 12px;
}

.muted {
  color: var(--muted);
  font-size: 13px;
}

/*# sourceMappingURL=src_app_globals_162hn9o.css.map*/