*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

.container{
    width:420px;
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

h1{
    text-align:center;
    color:#d35400;
    margin-bottom:25px;
}

input{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    margin-bottom:15px;
    font-size:16px;
}

button{
    width:100%;
    padding:12px;
    background:#e67e22;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
}

button:hover{
    background:#ca6f1e;
}

.card{
    margin-top:25px;
    text-align:center;
}

.card h2{
    color:#27ae60;
    margin-bottom:15px;
}

#menuLink{
    display:block;
    margin:15px 0;
    color:#2980b9;
    text-decoration:none;
    word-wrap:break-word;
}

#qrcode{
    margin-top:20px;
    display:flex;
    justify-content:center;
}

.order-card{

    background:white;

    margin:20px 0;

    padding:20px;

    border-radius:10px;

    box-shadow:
    0 3px 10px rgba(0,0,0,.15);

}


.order-card button{

    width:auto;

    margin:5px;

    padding:10px 15px;

}


.menu-item{

    display:flex;

    justify-content:space-between;

    background:#eee;

    padding:15px;

    margin:10px 0;

    border-radius:8px;

}