html, body {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

header {
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: .5em;
}

#partitura {
    width: 1000px;
    height: calc(100vh - 12em);
}

#atajos {
    display: flex;
    justify-content: space-between;
    gap: 1em;
    width: min-content;
    border: solid 1px gray;
    padding: 1em 2em;
    border-radius: 10px;
    position: relative;
    user-select: none;
}

#atajos button {
    font-weight: bold;
    background: white;
    border: solid 1px;
    border-radius: 3px;
    cursor: pointer;
    min-width: 3em;
    min-height: 2.5em;
    width: min-content;
}

button#agregar_atajo {
    background: hsl(147 50% 76% / 1);
}

#atajos button:hover {
    background: lightgray;
}

audio#player {
    width: 100%;
    max-width: 600px;
}

.player_container {
    display: flex;
    justify-content: center;
    gap: .5em;
}

#popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff9e;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup_container {
    background: white;
    border: solid 1px gray;
    padding: 1em;
}

.popup_title {
    font-size: 2em;
    border-bottom: solid 1px black;
    margin-bottom: 1em;
}

.popup_content > div {
    display: flex;
    flex-direction: column;
    gap: .5em;
}

.form-input {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: .5em;
}

.popup_buttons {
    display: flex;
    flex-direction: row;
    gap: .5em;
    justify-content: space-between;
    margin-top: 1em;
}

header select {
    font-size: 1em;
    padding: 0.3em;
    border-radius: 10px;
}

.partitura_container {
    display: flex;
    justify-content: center;
}

.params {
    display: flex;
    justify-content: center;
}



.player_container button {
    min-width: 3em;
    border-radius: 10px;
}

button {
    cursor: pointer;
}

.titulo_bloque {
    position: absolute;
    top: -10px;
    left: 10px;
    background: white;
    padding: 0 0.3em;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.6em;
    height: calc(100vh - 8em);
}

.form-check {
    display: inline-block;
    font-size: 1em;
    padding: 0.3em;
}

.oculto{
    display: none;
}

main:not(.cancion_cargada)>div{
    display: none;
}