/* Shared sidebar tree styling — overrides/extends style.css .nav-* */

.nav-subsection {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 1px 0;
}

.nav-item.is-disabled {
  color: var(--t4);
  cursor: not-allowed;
  opacity: 0.7;
}

.nav-item.is-sealed .nav-text {
  color: var(--t4);
}

.nav-lock {
  font-size: 0.625rem;
  color: var(--t5);
  margin-left: auto;
  letter-spacing: 0;
}

.nav-item.is-active {
  background: var(--s2);
  color: var(--t);
  position: relative;
}

.nav-item.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--t);
  border-radius: 0 2px 2px 0;
}
