body {
    --chords-lyrics-line--active: rgba(15,183,156,0.47);
}

.chords-container::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
    background-color: transparent;
}

.chords-container::-webkit-scrollbar
{
    width: 6px;
    height: 6px;
    background-color: transparent;
    border-radius: 4px;
}

.chords-container::-webkit-scrollbar-thumb
{
    background-color: var(--playbar--background);
}

.lyrics-wrapper {
}

/* target div, so that this selector is more specific than the one in react-tooltip.css */
div.chord-tooltip {
    width: 160px;
    background-color: #ffffff;
    border: 1px solid #666666;
    padding: 0px;
    pointer-events: auto !important;
    z-index: 10;
    opacity: 1;
}
.chord-tooltip .chord-tooltip-content {
    background-color: #ffffff;
    font-size: 0.8rem;
}
.chord-tooltip .chord-tooltip-close {
    position: absolute;
    right: 4px;
    top: 6px;
    color: #ff0000;
    font-size: 2rem;
    line-height: 1rem;
    z-index: 1000;
}
.lyrics-wrapper .slick-next:before, .lyrics-wrapper .slick-prev:before {
    color: #000000;
}
.lyrics-wrapper .slick-next, .lyrics-wrapper .slick-prev {
    z-index: 1000;
    top: auto;
    bottom: 35%;
}
.lyrics-wrapper .slick-prev {
    left: 8px;
}
.lyrics-wrapper .slick-next {
    right: 8px;
}
.lyrics-wrapper .slick-slide {
    margin: 0px;
}
.lyric-chords, .lyric-chords p {
    position: relative;
    line-height: 3;
    font-size: 1rem;
}
.lyric-chords p {
    font-size: inherit;
}
.lyric-chord {
    font-weight: 700;
}
.empty-chord .lyric-chord.processed {
    transform:translateY(0);
}
.lyric-chord.processed {
    display: inline-block;
    line-height: 1;
    /*
    background: var(--song-lyric-tag--backgroud);*/
    background:transparent;
    padding: 5px 5px 5px 5px;
    border-radius: 4px;
    color:var(--song-lyric-tag--color);
    transform: translateY(-37%);
    font-weight: 600;
}
.lyric-chords strong {
    color: var(--main-title-color);
    padding-bottom: 10px;
}
.chords-container {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    justify-content: flex-start;
    scrollbar-width: thin;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    margin-top: 15px;
    gap: 10px;
    aspect-ratio: 1053 / 140;
    overflow-y: hidden;
}
.chords-container .chord {
    max-width: 11%;
    max-height: 110px;
    text-align: center;
    flex-grow: 1;
    flex-shrink: 0;
}
/*.chords-container.ukulele .chord {
    width: 110px;
}*/
.song-actions {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10+ */
    user-select: none;
    display: flex;
}

.lyric-chord-position {
    display: inline-block;
    height: 1em;
}
.chords-lyrics-line {
    padding-left: 10px;
    background-color: transparent;
    transition: opacity 000ms ease, background-color 000ms ease;
    border-radius:10px;
}
.chords-lyrics-line.active {
    background-color: var(--chords-lyrics-line--active);
    margin-bottom:10px;
}
.chords-lyrics-line.active .lyric-chord {
    background:var(--song-lyric-tag-active--backgroud);
    color:var(--song-lyric-tag-active--color);
}
.chords-lyrics-line.past {
    opacity: 0.3;
}
#youtube-iframe {
    display: none;
}

.sheet {
    background: white;
    box-shadow:none !important;
    margin: 0mm !important;
}

@media (max-width: 768px) {
    .chords-container {
        aspect-ratio: 1053 / 260;
    }
    /*.chords-container .chord, .chords-container.ukulele .chord {
        width: 75px;
    }*/
    .chords-container .chord .chord-title {
        font-size: 0.8rem;
    }
    .lyric-chords, .lyric-chords p {
        line-height:3.4;
    }
    .song-actions {
        justify-content: center;
    }
}
@media (max-width: 968px) {
    .chords-container {
        aspect-ratio: 1053 / 220;
    }
    .chords-container .chord {
        max-width: 16%;
    }
    .chords-container .chord .chord-title {
        font-size: 0.8rem;
    }
    .song-actions {
        justify-content: center;
    }
}
@media (min-width: 1200px) {
    .lyric-chords {
        margin-top:30px;
    }
}
