/* RIGHT-HANDED SPECIFIC STYLES */

/* Right-handed fret row layout */
.fret-row {
    flex-direction: row; /* Left to right */
  }
  
  .string-label {
    margin-right: 8px; /* Margin on right */
    margin-left: 0;
  }
  
  /* Right-handed double markers (12th fret) */
  .fret-marker.double-1 {
    top: 30%;
    left: 30%;
    font-size: 0.8em;
  }
  
  .fret-marker.double-2 {
    top: 70%;
    left: 70%;
    font-size: 0.8em;
  }
  
  /* Right-handed fret labels */
  .fret-labels {
    flex-direction: row; /* Left to right */
  }
  