.container {
    max-width: 900px;
    margin: auto;
}

.black,
.white,
.octave {
    display: flex;
}

.black {
    position: relative;
    top: 45px;
    left: 11px;
}

.key {
    border: 1px solid #ddd;
}

.key.active {
    border-color: black;
    z-index: 1;
}

.black .key {
    width: 14px;
    margin: 3px;
    height: 40px;
    background-color: #ddd;
}

.black .key.active {
    background-color: black;
    z-index: 2;
}

.white .key {
    width: 20px;
    height: 80px;
}

#score .white .key {
    height: 40px;
}

#score .black .key {
    height: 20px;
    background-color: black;
}

#score .key {
    border-color: black;
}

#score .black {
    top: 25px;
}

.key {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.phantom {
    visibility: hidden;
}

.black .note {
    background-color: white;
    color: black;
    font-size: 8px;

}

.white .note {
    background-color: black;
    color: white;
}

.note {
    font-size: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    border-radius: 5em;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    position: absolute;
}

.note {
    animation-name: fullstep__;
    animation-duration: 2s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes fullstep {
    from {
        background-color: red;
    }

    to {
        background-color: yellow;
    }
}

.action, .remove, .moveUp, .moveDown {
    float: right;
    margin-right: 10px;
    /* Optional: Add some margin to the right */
}

#title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: auto;
    width: 300px;
}
#title p {
    margin: auto;
    width: auto;
}

#saves {
    float:right;
}
.label {    
    display: flex;
    flex-direction: row-reverse;
    width: 120px;
    min-height: 30px;
    box-shadow: #ddd 6px 6px 5px
}

.label .edit {
    visibility: hidden;
}   

.label p {
    width: 100px;
    overflow: hidden;
}   

.row {
    display: flex;
    align-items: center;
}

.col {
    margin: 5px;
}