 * {margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif;}
    body {
        background: #f7f9fc;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 20px;
    }
    .container {
        width: 100%;
        max-width: 700px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        overflow: hidden;
    }
    .header {
        display: flex;
        align-items: center;
        padding: 15px;
        border-bottom: 1px solid #eee;
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 10;
    }
    .header a {
        font-size: 20px;
        color: #333;
        text-decoration: none;
        margin-right: 15px;
    }
    .header h1 {
        font-size: 18px;
        color: #333;
    }
    h2 {
        text-align: center;
        padding: 15px;
        font-size: 22px;
        color: #0072ff;
        border-bottom: 1px solid #eee;
    }
    table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
    }
    thead {
        background: #0072ff;
        color: #fff;
    }
    thead th {
        padding: 12px;
        text-align: left;
    }
    tbody tr:nth-child(even) {
        background: #f9f9f9;
    }
    tbody td {
        padding: 10px 12px;
        color: #333;
    }
    tbody td.price {
        color: #f77062;
        font-weight: 600;
    }
    .btn-wrapper {
        text-align: center;
        padding: 20px;
        border-top: 1px solid #eee;
    }
    .btn-pesanan {
        display: inline-block;
        padding: 14px 20px;
        background: #f77062;
        color: #fff;
        text-decoration: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: bold;
        transition: 0.3s;
    }
    .btn-pesanan:hover {
        background: #d95a4f;
    }
    @media(max-width:480px){
        table, thead, tbody, th, td, tr {
            display: block;
            width: 100%;
        }
        thead {
            display: none;
        }
        tbody tr {
            background: #fff;
            margin-bottom: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border-radius: 8px;
            padding: 10px;
        }
        tbody td {
            padding: 8px 0;
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #eee;
        }
        tbody td:last-child {
            border-bottom: none;
        }
    }