.background {
    min-height: 450px;
    background-image: url('/static/images/background.png');
    background-position: right top;
    background-repeat: no-repeat;
}

.http_error_image {
    height: 300px;
    max-width: 300px;
}

.quote {
    background: transparent;
    border-left-color: #577cad;
    border-left-width: 2px;
    border-left-style: solid;
    border-radius: 0.3em;
}

#switchTheme {
    display: block;
    position: fixed;
    right: 25px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    background: black;
    color: white;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;

}
#switchTheme i {
    line-height: 40px;
}

body[data-bs-theme="dark"] #switchTheme {
    background: white;
    color: black;
}

#switchTheme .dark {
    display: block;
}
#switchTheme .light {
    display: none;
}

body[data-bs-theme="dark"] #switchTheme .dark {
    display: none;
}
body[data-bs-theme="dark"] #switchTheme .light {
    display: block;
}


.spoiler .spoiler-content {
    display: none;
}

.chord-editor-preview {
    display: block;
    width: 120px;
    height: 120px;
    background-color: transparent;
}

.songs-list tr td, .songs-list tr th{
    background-color: rgba(130, 150, 240, 0.05) !important;
}
.song-controls {
    position: fixed;
    bottom: 25px;

    display: none; /* Not ready yet */
}
.song-controls .label {
    pointer-events: none;
}
.song-controls .pause {
    display: none;
}
.song-chord {
    font-weight: bold;
}

.fg {
    font-family: var(--fa-style-family, "Guitar");
    font-weight: var(--fa-style, 900);

    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

@font-face {
    font-family: 'Guitar';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../webfonts/Guitar.ttf") format("truetype"); /* url("../webfonts/Guitar.woff2") format("woff2"), */
}

.fg-fretboard:before {
    content: "\0041"; /* \f3d6 */
}

.rotate-right {
    transform: rotate(90deg);
}
.rotate-left {
    transform: rotate(-90deg);
}
.rotate-180 {
    transform: rotate(180deg);
}