
/* Shortcut legend */
.kbd-legend {
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: var(--fs-label-xs);
  color: var(--muted);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}


.kbd-legend-content {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 3px 8px;
  padding: 0 10px 7px;
  overflow: hidden;
  max-height: 600px;
  transition: max-height 0.2s ease, padding-bottom 0.2s ease;
}

.kbd-legend.collapsed .kbd-legend-content {
  max-height: 0;
  padding-bottom: 0;
}

.kbd-legend-section-title {
  grid-column: 1 / -1;
  color: var(--muted);
  opacity: 0.6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 2px;
  font-size: var(--fs-tag);
}

.kbd-legend-content > .kbd-legend-section-title:first-child { margin-top: 4px; }

.kbd-legend kbd {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1px 4px;
  color: var(--accent2);
  white-space: nowrap;
  justify-self: end;
}
.kbd-legend span { color: var(--muted); align-self: center; }
