/*
 * 악보 편집 — 선택 음표/쉼표 빨강 강조.
 * abcjs는 쉼표를 path/use 혼합으로 그려서 inline fill 속성만으로는 빨강 표시 안 되는 경우 있음
 * → CSS로 g 하위 모든 그리기 요소에 강제 적용.
 */
g.pf-selected-note path,
g.pf-selected-note ellipse,
g.pf-selected-note circle,
g.pf-selected-note rect,
g.pf-selected-note polygon,
g.pf-selected-note use {
  fill: #dc2626 !important;
  stroke: #dc2626 !important;
}
g.pf-selected-note text,
g.pf-selected-note tspan {
  fill: inherit !important;
  stroke: none !important;
}
