#pop-up-note{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 10;
}

#form-container {
    display: flex;
    font-family: 'Trebuchet MS';
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    backdrop-filter: blur(5px);
    pointer-events: auto;
    opacity: 1;
    width: 600px;
    height: 600px;
    background-image: url('src/images/fondo.jpg');
    border-radius: 25px;
    box-shadow: 40px 40px 40px 40px rgba(0, 0, 0, 0.521);
    border: 3px solid rgb(0, 0, 0);
    margin-top: 0;
}

.settings-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: rgb(255, 255, 255);
    width: 550px;
    margin-bottom: 20px;
}

h1 {
    font-size: 20px;
    margin: 2px;
}

#close {
    width: 25px;
    height: 25px;
    color: white;
    text-align: center;
    background-color: rgb(226, 0, 0);
    border-radius: 5px;
    user-select: none;  /* Desactiva la selección de texto */
    cursor: default;
}

#close:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.733); /* Sombreado al pasar el mouse */
    background-color: rgb(255, 61, 61);
}

#sectionUP {
    display: flex;
    width: 520px;
    flex-direction: row;
    justify-content: left;
}


#section1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid black;
    width: 290px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.212);
    margin-bottom: 10px;
}

#upRightBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(0, 0, 0);
    margin-left: 10px;
    width: 220px;
    height: 80px;
    margin-bottom: 10px;
    border-radius: 20px;
    background-color: rgb(0, 0, 0);
}

#infoTitle{
    font-size: 14px;
    font-weight: bold;
    color: #31aed4;
    text-align: center;
    margin-top: 0;
    margin-bottom: 8px;
}
.infoContainer{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    border-bottom: solid 1px rgb(20, 20, 20);
    margin-bottom: 5px;
}
.infoText{
    width: 45px;
    font-size: 11px;
    font-weight: bold;
    color: #31aed4;
    margin-top: 0;
    margin-bottom: 0;
}
.notes-info{
    width: 85px;
    font-size: 11px;
    font-weight: bold;
    text-align: right;
    color: #31aed4;
    margin-top: 0;
    margin-bottom: 0;
}


#section2 {
    border: 1px solid black;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.212);
    margin-bottom: 10px;
    padding-bottom: 10px;
}
#section3 {
    border: 1px solid black;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.212);
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    height: 20px;
    margin-top: 10px;
    margin-left: 20px;
    margin-bottom: 10px;
}

.select-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 500px;
    padding: 5px;
    margin: 5px;
    border-radius: 10px;
}

.options-container {
    display: flex;
    align-items: center;
    width: 120px;
    height: 30px;
    padding: 0px;
    font-size: 12px;
    justify-content: left;
}

label {
    font-size: 14px;
    color: rgb(255, 255, 255);
    margin-right: 20px;
    width: 120px;
    text-align: right;
}

.upper-options {
    width: 100px;
}

.labelSection3 {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 120px;
    margin-right: 15px;
}

#chord {
    width: 60px;
    padding-left: 10px;
}

select {
    text-align: right;
    width: 120px;
    height: 25px;
    border-radius: 5px;
    padding: 0px;
    font-size: 12px;
}

.noteSelection {
    width: 60px;
}

.octaveSelection {
    width: 60px;
}

#program-btn {
    width: 100px;
    height: 30px;
    color: white;
    font-size: 12px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.438);
    border-radius: 7px;
    margin: 10px;
    background-color: rgb(226, 0, 0);
}

#program-btn:disabled {
    background-color: grey;
    color: darkgrey;
}

