.hidden {
    display: none !important;
}

.instructions-editor {
    padding: 0.5em;
    width: 100%;
    overflow: auto;
}

.instructions-line {
    position: relative;    
    height: 1.5em;
    margin-right: 0.5em;
    color: black;
    font-style: italic;
    align-content: center;
}

.instructions-line .dark {
    color: white;
}

.instructions-content {
    margin-left: 1.5em;
    left: 2em;
    top: 0;
    background-color: transparent !important;
}

.instructions-section {
    background-color: gray !important;
    border-radius: 5px;
    color: white;
    font-style: normal;
}

.instructions-insert {
    width: calc(100% - 0.5em);
    height: 0.2em;
    position: relative;
}

.instructions-insert > div {
    position: absolute;
    font-weight: 800;
    width: 1em;
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: transparent;
    right: -0.5em;
    top: 50%;    
    transform: translateY(-50%);
    border-radius: 100%;
    border: 1px solid black;
    z-index: 100;
    background-color: whitesmoke;
}

.instructions-insert > div::before,
.instructions-insert > div::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #333;
    transform: translate(-50%, -50%);
    border-radius: 1px;
}

.instructions-insert > div::before {
    width: 0.5em;
    height: 2px;
}

.instructions-insert > div::after {
    width: 2px;
    height: 0.5em;
}

.instructions-line .button {
    position: absolute;
    width: 1em;
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background-color: whitesmoke;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    z-index: 100;
    font-style: normal;
}

.instructions-line .expand {
    left: 0;
    top: 50%;    
    transform: translateY(-50%);
    background: transparent;
    border: none;
}

.instructions-line .plus {
    right: 2.2em;
    top: 50%;    
    transform: translateY(-50%);
}

.instructions-line .minus {
    right: 1em;
    top: 50%;    
    transform: translateY(-50%);
}

.song-editor {
    width: 100%;
    overflow: auto;
    padding: 0.5em;
    color: black;
}

.song-editor .dark {
    color: white;
}

.song-content-grid {
    display: grid;
    column-gap: 0.5rem;
    row-gap: 0;
    grid-template-columns: auto minmax(0, 1fr);
}

.song-tag {
    align-content: end;
}

.song-line {
    display: flex;
    flex-direction: row;
}

.song-word {
    display: flex;
    margin-right: 0.2em;
    flex-direction: column-reverse;
}

.song-chunk {
    display: flex;
    flex-direction: column;
}

.song-chords {
    display: flex;
    flex-direction: row;
    align-items: end;
}

.song-chord {
}

.song-lyrics {
    display: flex;
    flex-direction: row;
}

.chunk-separator {
    width: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    margin-bottom: 0.25em;
}

.chunk-space {
    width: 100%;
    min-width: 0.25em;
}

.collapsed {
    display: none;
}

.instructions-editor-panes {
    display: flex;
    width: 100%;
    height: 100vh;
}

.instructions-editor-separator {
    width: 5px;
    background: #aaa !important;
    cursor: col-resize;
}

.abc {
    position: absolute;
    background-color: transparent !important;
    transform-origin: left top;
    color: black;    
}

.abc.dark {
    color: white;
}

#chordpro_svg_holder_image {
    position: fixed;
    opacity: 0;
    pointer-events: none;
}
