/*
Chord diagram
*/
svg {
  background-color: white;
}
#chord-nut {
  fill: rgb(94, 94, 94);
  stroke: rgb(94, 94, 94);
  stroke-width: 1;
}
#chord-frets {
  fill: none;
  stroke: rgb(94, 94, 94);
  stroke-width: 1;
}
#chord-strings {
  fill: none;
  stroke: rgb(94, 94, 94);
  stroke-width: 1;
}
path#chord-muted {
  fill: none;
  stroke: black;
  stroke-width: 1;
}
.chord-barre {
  fill: rgb(0, 0, 0);
  stroke: rgb(0, 0, 0);
  stroke-width: 1;
}
.chord-open {
  fill: rgb(255, 255, 255);
  stroke: rgb(0, 0, 0);
  stroke-width: 1;
}
text.chord-name {
  font-family: Roboto, Helvetica neue, Helvetica, Arial, sans-serif !important;
  font-size: 10px !important;
  alignment-baseline: before-edge;
}
text.chord-min-fret {
  font: 10px Roboto, Helvetica neue, Helvetica, Arial, sans-serif !important;
}