/* 키보드 단축키 배지 — 버튼 옆에 붙여 단축키 존재 시그널 */
.kbd-pill {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  margin-left: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  background: #f3f4f6;
  border: 1px solid #9ca3af;
  border-radius: 4px;
  box-shadow: 0 1px 0 #9ca3af;
  line-height: 1.4;
  white-space: nowrap;
}

button:disabled .kbd-pill {
  opacity: 0.5;
}
