#utilisateur {
    display: flex;
    flex-direction: row;
    width: 90%;
    align-content: center;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 100px auto;
}
#utilisateur .commande {
    display: flex;
    flex-direction: column;
    width: 350px;
    border: none;
    border-radius: 20px;
    background-color: white;
    padding: 20px;
    margin: 0px 0px 100px 0px;
    text-align: center;
}
#utilisateur .commande .bouton {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    margin: auto;
}
#utilisateur .commande .bouton .modifier {
    padding: 8px;
    width: 100px;
    text-align: center;
    background-color: #55aaff;
    text-decoration: none;
    color: white;
    border-radius: 20px;
    border: solid 2px #55aaff;
}
#utilisateur .commande .bouton .modifier:hover {
    background-color: white;
    color: #55aaff;
}
#utilisateur .commande .bouton .supprimer {
    padding: 8px;
    width: 100px;
    text-align: center;
    background-color: #ee5253;
    text-decoration: none;
    color: white;
    border-radius: 20px;
    border: solid 2px #ee5253;
}
#utilisateur .commande .bouton .supprimer:hover {
    background-color: white;
    color: #ee5253;
}
#utilisateur .commande .nom {
    font-weight: bold;
    margin: 10px 0px 0px 0px;
}
#utilisateur .commande img {
    width: 150px;
    height: 150px;
    margin: -80px auto 0px auto;
    border-radius: 100px;
}
#utilisateur .commande .bouton .supprimer {
    padding: 8px;
    width: 100px;
    text-align: center;
    background-color: #ee5253;
    text-decoration: none;
    color: white;
    border-radius: 20px;
    border: solid 2px #ee5253;
    margin-top: 20px;
}
#utilisateur .commande .bouton .supprimer:hover {
    background-color: white;
    color: #ee5253;
}
