.legend-menu {
  position: fixed;
  top: var(--space-md);
  left: var(--space-lg);
  z-index: 10;
  width: var(--legend-width);
  display: flex;
  flex-direction: column;
}

.legend-menu__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.legend-menu__logo {
  width: 100%;
  height: auto;
}

.legend-menu__grid {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-secondary);
}

.legend-menu__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: var(--weight-mono-medium);
  font-size: var(--text-sm);
}

.legend-menu__item + .legend-menu__item {
  margin-top: -1px;
}

.legend-menu__item:hover,
.legend-menu__item--hover {
  background-color: var(--color-text);
  color: var(--color-bg-secondary);
}

.legend-menu__item-label {
  line-height: 1;
}
