/* ------------------------------------------------------------------
   Overrides layered on top of the Sonaar player.

   Kept in their own file rather than edited into the plugin CSS, so
   nothing is lost if the plugin assets are rebuilt from the export.
   ------------------------------------------------------------------ */

/* The player brackets every lyric line with a music note:

     .srmp3_lyrics_container:before,
     .srmp3_lyrics_container:after { content: '♪'; margin: 0px 8px; }

   That is right for a music player and wrong here - these are recorded
   oral-history interviews, not songs. Remove the glyphs and the margin
   they carried, so the line sits where it would have without them. */
.srmp3_lyrics_container::before,
.srmp3_lyrics_container::after {
  content: none !important;
  margin: 0 !important;
}
