h1, h2 {
    text-align: center;
    font-family: 'Kameron', serif;
    font-style: normal;
}

h4 {
    font-family: 'Kameron', serif;
    font-style: normal;
}

.form-section{
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 400px;
    
    margin: 0 auto;
    margin-top: 40px;

    border-radius: 10px;
    background-color: rgb(0, 0, 117);
    color: white;
}

.section-form-add{
    width: 100%;
    max-width: 400px; /* empêche qu’il devienne trop large */
    padding: 40px;

    
}

.msg-form{
    height: 150px;
}

.log-form{
    max-width: 350px;
    margin: 0 auto;
    color: white;
}

.form-container{
    width: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;

    background-color: rgb(0, 0, 117);   
}


/*------------------Tableaux----------------*/

.table-responsive{
    max-height: 600px;      /* hauteur maximale visible du tableau */
    overflow-x: auto;       /* scroll horizontal si le tableau est trop large */
    overflow-y: auto;       /* scroll vertical si le tableau est trop haut */

}


td, th, tr {
    padding: 10px;
    text-align: center;
}