body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

label {
    font-size: 16px;
    font-weight: bold;
}

select {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #bbb;
    font-size: 16px;
}

button {
    background: #0099ff;
    color: white;
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

button:hover {
    background: #007acc;
}

#lista {
    margin-top: 25px;
    background: white;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#lista h3 {
    margin-top: 0;
}

.pedido {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pedido:last-child {
    border-bottom: none;
}

input[type="checkbox"] {
    transform: scale(1.3);
    margin-right: 10px;
}

#btn-pagar {
    width: 100%;
    background: #28a745;
    font-size: 18px;
}

#btn-pagar:hover {
    background: #1e7e34;
}

/* Responsivo para celular */
@media (max-width: 600px) {
    button {
        width: 100%;
    }

    select {
        font-size: 14px;
    }

    h1 {
        font-size: 22px;
    }
}
