#commande {
    display: flex;
    flex-direction: row;
    width: 90%;
    align-content: flex-start;
    align-items: baseline;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: auto;
}
#commande .commande {
    display: flex;
    flex-direction: column;
    width: 500px;
    border: none;
    border-radius: 20px;
    background-color: white;
    padding: 20px;
    margin: 0px 0px 50px 0px;
    text-align: left;
}
#commande .commande .bouton {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    margin: auto;
	flex-wrap: wrap;
}
#commande .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;
}
#commande .commande .bouton .modifier:hover {
    background-color: white;
    color: #55aaff;
}
#commande .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;
}
#commande .commande .bouton .supprimer:hover {
    background-color: white;
    color: #ee5253;
}
#commande .commande .bouton .imprimer {
    padding: 8px;
    width: 100px;
    text-align: center;
    background-color: #55cc55;
    text-decoration: none;
    color: white;
    border-radius: 20px;
    border: solid 2px #55cc55;
}
#commande .commande .bouton .imprimer:hover {
    background-color: white;
    color: #55cc55;
}
#commande img {
    width: 400px;
    display: block;
    margin: auto;
}
#commande .liste-materiel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    border: none;
    background-color: white;
    border-radius: 5px;
}
#commande .ligne {
    display: flex; 
    flex-direction: row;
    width: 100%;
}
#commande .ligne2 {
    display: flex; 
    flex-direction: row;
    width: 100%;
    background-color: #feca57;
}
#commande .liste-materiel .nombre-produit {
    width: 10%;
    text-align: center;
    font-size: 15px;
}
#commande .liste-materiel .nom-produit {
    width: 80%;
    text-align: left;
    font-size: 15px;
    text-decoration: none;
    color: #212121;
    margin: auto;
}
#commande .liste-materiel .bouton {
    width: 5%;
    font-size: 15px;
    text-decoration: none;
    margin: auto;
}
#commande .bouton-ajouter {
    text-align: center;
    background-color: #55cc55;
    padding: 8px 20px;
    color: white;
    font-size: 15px;
    border-radius: 20px;
    border: solid 2px #55cc55;
    text-decoration: none;
}
#commande .bouton-ajouter:hover {
    background-color: transparent;
    color: #55cc55;
}
#commande .titre {
    font-weight: bolder;
    text-align: center;
    font-size: 25px;
}
#commande .date {
    text-align: center;
    margin-top: -20px;
}
#commande span {
    font-weight: bold
}
#commande #vide {
    height: 300px;
    margin: 0px
}
#commande .bouton {
    color: #ee5253;
    text-decoration: none;
    font-weight: bolder;
}
#commande .bouton-valid {
    text-decoration: none;
    font-weight: bolder;
    margin: auto;
    width: 5%;
    font-size: 15px;
    color: #55cc55;
}
#ajout {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-content: space-between;
    align-items: center;
}
#ajout input[type='number'] {
    border-radius: 10px;
    padding: 12px;
    background-color: #EFEDF0;
    border: none;
    margin-top: 10px;
    width: 20%;
}
#ajout input[type="submit"] {
    width: 60%;
    margin: 10px 0px 0px 0px;
}