*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f7fa;
    color:#222;
}

nav{
    background:#fff;
    border-bottom:1px solid #ddd;
    padding:18px 40px;
    display:flex;
    gap:30px;
}

nav a{
    color:#222;
    text-decoration:none;
    font-weight:bold;
}

.container{
    max-width:900px;
    margin:60px auto;
    background:white;
    padding:60px;
    border-radius:14px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

h1{
    margin-bottom:20px;
    font-size:46px;
}

p{
    margin-bottom:30px;
    color:#666;
}

.input-row{
    display:flex;
    gap:20px;
}

input{
    flex:1;
    padding:18px;
    font-size:18px;
    border:1px solid #ddd;
    border-radius:8px;
}

button{
    background:#1a73e8;
    color:white;
    border:none;
    padding:18px 40px;
    border-radius:8px;
    cursor:pointer;
    font-size:18px;
}

button:hover{
    background:#155ac2;
}

.success{
    margin-top:25px;
    color:#188038;
}

/* Order page */

.badge{
    display:inline-block;
    background:#e8f0fe;
    color:#1a73e8;
    padding:8px 14px;
    border-radius:30px;
    font-weight:bold;
    font-size:12px;
    margin-bottom:20px;
}

table{
    width:100%;
    border-collapse:collapse;
    margin-top:30px;
}

th,td{
    padding:15px 0;
    border-bottom:1px solid #eee;
    text-align:left;
}

.summary{
    margin-top:30px;
    width:250px;
    margin-left:auto;
}

.summary div{
    display:flex;
    justify-content:space-between;
    margin:10px 0;
}

.total{
    font-size:28px;
    font-weight:bold;
}
