/* ── VERSE NOTES ── */
.verse-note-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: 3px;
  vertical-align: super;
  cursor: pointer;
  flex-shrink: 0;
}
.note-colors {
  display: flex;
  align-items: center;
  gap: 8px;
}
.note-color-label {
  font-family: Arial, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.note-color-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 1rem;
  transition: border-color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.note-color-btn.selected { border-color: var(--gold); }
