.navigazione {
    height: 70px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    max-width: 1024px;
    margin: 0px auto;
    font-size: 22px;
    color: darkblue;
    border-bottom: 1px solid lightgrey;
}

.sottotitolo {
    font-size: 10px;
    margin-left: 10px;
}

.bandiera {
    cursor: pointer;
    width: 26px;
    height: 26px;
    margin: 0px 3px;
}

.pulsante {
    border-radius: 100px;
    background: #0C6895;
    width: 250px;
    height: 46px;
    color: white;
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 46px;
    cursor: pointer;
}

.minipulsante {
    border-radius: 50px;
    background: #0C6895;
    width: 120px;
    height: 28px;
    color: white;
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    height: 40px;
    line-height: 40px;
    font-weight: 600;
    cursor: pointer;
}

.pulsante:hover,
.minipulsante:hover {
    background: #0a4a69;
}

#intro {
    display: flex;
    flex-direction: column;
    max-width: 360px;
    gap: 20px;
    margin: 0px auto;
    align-items: center;
}

#initialcredits {
    text-align: center;
    margin: 10px auto 20px auto;
}

.logo {
    max-width: 200px;
    margin-top: 50px;
}

.titolo {
    display: flex;
    align-content: center;
    align-items: center;
    line-height: 10px;
}

.page {
    max-width: 1024px;
    margin: 0px auto;
}

#editor,
#users {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

#intestaesercizi,
#intestautenti {
    font-size: 26px;
}

.grigio {
    background-color: darkgrey;
}

#main {
    display: flex;
    gap: 20px;
}

#left,
#right {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
    padding-bottom: 50px;
}

.anteprima-wrapper {
    display: flex;
    justify-content: end;
    margin: 5px 0px 5px 0px;

}

#txt_anteprima {
    margin-left: 10px;
}

#txt_intestazione,
#txt_esercizi {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px
}

.rigawrapper {
    box-sizing: border-box;
    padding: 10px 0px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.quattropulsanti {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 20px;
    gap: 5px;
}

.duepulsanti {
    display: flex;
    align-content: center;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 20px;
}

.quattropulsanti>div {
    display: flex;
    align-content: center;
    flex-direction: row;
    justify-content: left;
    margin-top: 20px;
    align-items: center;
    width: 200px;
    border-radius: 5px;
    gap: 5px;
    padding: 10px;
    box-sizing: border-box;
    line-height: 60px;
    font-size: 14px;
    background-color: #0C6895;
}

.giallo {
    background-color: darkgoldenrod;
}

.rosso {
    background-color: darkred;
}





.aggiungi-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
    box-shadow: 0px 0px 15px lightgrey;
    padding: 20px;
    border-radius: 5px;
}

.aggiungi-left {
    max-width: 100%;
}

.aggiungi-right {
    display: flex;
    align-content: center;
    align-items: center;
    background-color: #0a4a69;
    color: white;
    border-radius: 20px;
    padding: 10px 20px;
}

#aggiungiselect {

    height: 40px;
    border-radius: 10px;
    line-height: 40px;
}

input {
    height: 40px;
    border-radius: 10px;
    line-height: 40px;
    border: 0px solid lightgrey;
    padding: 0px 10px;
    box-sizing: border-box;
    box-shadow: 0px 0px 5px lightgrey;
}

select {
    border: 0px solid lightgrey;
    padding: 0px 10px;
    box-sizing: border-box;
    box-shadow: 0px 0px 5px lightgrey;
}

#aggiungibtn {
    cursor: pointer;
    margin: 0px auto;
    margin: 10px auto 0px auto;
}

.riga {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 5px;
    box-sizing: border-box;
    gap: 5px;

}

#left_esercizi_style {
    margin: 10px 0px;
    margin-bottom: 30px;
}

#utente {
    width: 100%;
}

.upper,
.down {
    cursor: pointer;
}

.aggiungi-sotto {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    flex-wrap: wrap;
}

#indietro-btn {
    background-color: #6a6a6a;
}

#inner_intestazione {
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0px 0px 15px lightgrey;
    border-radius: 5px;
}

@media only screen and (max-width: 600px) {


    #left {
        width: 100%;

    }

    .anteprima-wrapper {
        display: none;
    }

    .aggiungi-sotto {
        flex-direction: column;
    }

    .rigawrapper {
        flex-direction: column;
    }

}