.head,
main,
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.text_center{
    text-align: center;
    margin-top: 20px;
    
}

div{
    font-size: 15px;
}

.formulaire{
    width: 20%;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    /* padding: 10px; */
    /* border-radius: 10px; */
    /* border: 1px solid #0000; */
    /* box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75); */
    opacity: 0.65;
    margin-top: 60px;

}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Optional: Adjust this value as needed */
    flex-flow: column nowrap;

}


.button{
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-size: 13px;
    line-height: 20px;
    /* font-weight: 600; */
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid #222222;
    transition: box-shadow 0.2s ease 0s, -ms-transform 0.1s ease 0s, -webkit-transform 0.1s ease 0s, transform 0.1s ease 0s;
    background: #fff;
    color: #222222;
    margin-top: 20px;
}

.button:hover{
    border-color: #000000;
    background: #a3a3a3;
}
.button:hover:not(.disabled){
    border-color: #000000;
    background: #a3a3a3;
}

.button.disabled{
    background: #c3c3c3;
    cursor: not-allowed;
    border-color: #c3c3c3;
    color: #777777;
}



img{
    height: auto;
    max-height: 350px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}
    


.item-form{
    margin: 0px;
    border:0px;
    display: flex;
    justify-content: space-between; /* Adjust as needed: flex-start, flex-end, center, space-around, space-evenly */
    align-items: center; /* Vertically align items if needed */
    /* border: 1px solid black; Optional: for visual reference */
    padding: 10px;
}

.description{
    margin:5px;
}

.hidden {
    opacity: 0;
    pointer-events: none; /* Prevent interaction when hidden */
}


.element{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #000000;
}

.quantity-control{
    display: flex;
    align-items: center;
    /* make them separated by 5% of div width  */
    justify-content: space-between;
    padding: 0 30px;
    height: 20px;
    /* underline */
}

.change-quantity{
    text-decoration: underline;
}


.command-title{
    font-size: 20px;
    font-family: "Fira";
    font-weight: 100;
    margin-bottom: 30px;
    margin-top: 5px;
}
