/*!
 * jQuery Chord Transposer plugin v1.0
 * http://codegavin.com/projects/transposer
 *
 * Copyright 2010, Jesse Gavin
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://codegavin.com/license
 *
 * Date: Sat Jun 26 21:27:00 2010 -0600
 */
span.c {
    font-weight: bold;
    color: #2159D6;
}

span.lyricsOnly {
    display: block;
    margin: 0;
}

span.lyrics {
    font-family: 'Liberation Mono', 'Courier New', 'Consolas', 'Monaco', 'Menlo', monospace;
    font-weight: 600;
}

span.lyrics-bold {
    font-family: 'Liberation Mono', 'Courier New', 'Consolas', 'Monaco', 'Menlo', monospace;
    font-weight: 600;
}

span.verseType {
	font-style: normal;
	font-weight: bold;
    color: #ffffff;
	background-color: #729fcf;
    }


.transpose-keys {
    margin: 8px 0;
    overflow: auto;
    font: normal 12px sans-serif;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}
.transpose-keys a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2em;
    text-align: center;
    color: #333;
    background: #eee;
    text-decoration: none;
    padding: 6px 8px;
    border: solid 1px transparent;
    border-radius: 4px;
    outline: none;
    min-height: 28px;
    transition: all 0.2s ease;
}
.transpose-keys a:hover {
    background: #ddd;
    transform: translateY(-1px);
}
.transpose-keys a.selected {
    background: #2159D6;
    color: #FFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}