

h2{
    display: flex;
    justify-content: center;
}

main{
    display: flex;
    justify-content: flex-start;
width: 100%;
background-color: white !important;
padding: 2vh 2vw;


}

#user{
    display: flex;
    justify-content: end !important;
}


section{
    display: flex;
    flex-direction: column;
    align-items: center;
}

aside{
    display: flex;
    flex-direction: column;
    width: 40%;
}

input{
    width: 42%;
    height: 3vh;
    font-size: 1rem;
    align-content: center;

}


form{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-size: 2rem;
}

#title{
    display: flex;
    justify-content: center;
    font-size: 3rem;
}
/*//////////////////////table ////////////////////*/
.col-sm{
    border-left: 2px solid black;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}


.row {
    display: grid;
    width: 100%;
    justify-content: space-around;
    border: solid 2px black;
    grid-template-columns: repeat(6, 1fr);
}



/* line color*/
.odd-row {
    background-color: #f2f2f2; /* Couleur de fond pour les lignes impaires */
}

.even-row {
    background-color: #ffffff; /* Couleur de fond pour les lignes paires */
}