/* Style simple pour afficher les articles dans le panier */
.panier-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    background-color: gray;

    width: 90%;
    padding: 10px;

}

.article img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 15px;
}
.article {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: 95%;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.article h3, .article p {
    padding: 10px;
}
.article-number {
    font-weight: bold;
    margin-right: 10%;
    padding-left: 10px;
}
main{
    padding-top: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
   align-items: center }
h1{
    padding-bottom: 20px
}
.titre{
    display: flex;
    width: 95%;
    border: 1px solid #ddd;
    font-size: 20px;
    justify-content: space-between;
    margin-bottom: 10px;
    border-radius: 5px;


}
.titre p{
    padding: 5px;
}
.titre div{
    margin-right: 14%;
}
.total {
    width: 95%;
    margin-top: 20px;
    padding: 10px;
    background-color: gray;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    border-radius: 5px;
}
button{
    padding: 10px;
    background-color:none;
}
#poubelle{
    color: whitesmoke;
    padding-right: 5px;
}
#poubelle:hover{
    color: rgb(240, 56, 56);
    transition: 0.7s ease;
}
#button_pubelle{
    background-color: transparent;
    border: none;
}

footer{
    background-color: rgba(0, 0, 0, 0.317);
    margin-top: 10%;
    height: 35vh;
    display: flex;
    width: 100%;
}