body,html {
    margin: 0;
    padding: 0;
    font-family: "Smythe", system-ui;
    
} 

main, header{
    width: 450px;
    margin: 0 auto;
    
}

header img {
    width: 100%;    
}

.menu-item {
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid whitesmoke;
padding: 20px;
}

.container-order {
display: flex;
justify-content: space-between;
align-items: center;
/* padding: 20px 0; */
border-bottom: 1px solid rgb(212, 209, 209);
}

.order-info {
    border-bottom: 2px solid black;
    padding: 0 10px;
}

.left-section {
display: flex;
/* padding: 20px; */
align-items: center;
}

.left-section img {
    width: 50px;
    margin-right: 10px;
}

.food-info .description {
    font-size: 0.9rem;
    color: gray;
    margin: 5px;
}

.food-info h3 {
    margin: 5px;
    font-size: 1.2rem;
}

.price {
    font-weight: bold;
    margin: 5px;
}

.title {
    text-align: center;
}

.price-remove {
    display: flex;
    align-items: center;
}

.price-remove .price {
    font-size: 20px;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin: 0;
}

.prices {
    text-align: center;
    /* padding-bottom: 20px; */
    font-size: 1.2rem;
}

.order-btn, .order-btn {
    background-color: #16DB99;
    border: none;
    color: white;
    padding: 20px;
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
}

.order-btn-discount {
    background-color: #6D28D9;
    border: none;
    color: white;
    padding: 10px;
    width: 200px;
    cursor: pointer;
    margin-top: 10px;
}

i {
    cursor: pointer;
}

.add-to-order-btn {
    cursor: pointer;
}

.total-price .label {
    font-size: 22px;
}

input {
    padding: 5px;
    height: 50px;
    margin: 10px 0;
    width: 100%;
    box-sizing: border-box;
}

h2 {
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
}

.card-modal {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position:fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 350px;
    height: 400px;
    display: none;
}

.discount-modal {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position:fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 350px;
    height: 300px;
    display: none;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.close-discount-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.final-msg {
    margin-top: 20px;
    font-size: 1.4rem;
    color: #065F46;
    background-color: #ECFDF5;
    padding: 10px;
}

.discount-message {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #B91C1C;
    text-align: center;
}

.toast-danger {
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px 10px;
    border-radius: 5px;
    width: 300px;
    height: 25px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    background-color: #FEE2E2;
    color: #B91C1C;
    opacity: 85%;
    display: none;
}

.toast-success {
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: 25px;
    padding: 15px 10px;
    border-radius: 5px;
    width: 300px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    background-color: #D1FAE5;
    color: #065F46;
    opacity: 85%;
    display: none;
}
