.shortcut-settings {
  display: grid;
  gap: 8px;
}

.shortcut-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.shortcut-reset-button {
  min-height: 30px;
  padding: 0 10px;
  font-size: 12px;
}

.shortcut-settings h3 {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shortcut-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.shortcut-row > span {
  min-width: 0;
  color: var(--soft);
  font-size: 12px;
  font-weight: 760;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shortcut-key {
  min-width: 78px;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 7px;
  border-color: rgba(70, 208, 184, 0.28);
  background: rgba(8, 12, 12, 0.72);
  color: #e4fff8;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.shortcut-key.is-capturing {
  border-color: rgba(243, 177, 90, 0.72);
  background: rgba(243, 177, 90, 0.13);
  color: #ffe2b3;
}
