        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            background: #f5f6fa;
            color: #333;
        }

        header {
            display: flex;
            align-items: center;
            background: #ff6600;
            color: white;
            padding: 15px 20px;
        }

        .back-arrow {
            text-decoration: none;
            color: white;
            font-size: 22px;
            margin-right: 15px;
        }

        header h2 {
            margin: 0;
            font-size: 20px;
        }

        header p {
            margin: 0;
            font-size: 14px;
            opacity: 0.8;
        }

        .container {
            padding: 20px;
        }

        h3 {
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .pesanan-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .pesanan-item {
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            padding: 15px;
            transition: 0.3s;
        }

        .pesanan-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .pesanan-item h4 {
            margin: 0 0 8px;
            color: #34495e;
        }

        .pesanan-item p {
            margin: 3px 0;
            font-size: 14px;
        }

        /* ===== STATUS COLORS ===== */
        .status {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 13px;
        }

        .status.dibatalkan {
            background: #ffe6e6;
            color: #c0392b;
        }

        .status.selesai {
            background: #eafaf1;
            color: #27ae60;
        }

        .status.diproses {
            background: #eaf2ff;
            color: #2980b9;
        }

        .status.pending {
            background: #fff5e6;
            color: #e67e22;
        }

        /* ===== EMPTY STATE ===== */
        .empty {
            text-align: center;
            margin-top: 60px;
        }

        .empty-icon {
            font-size: 60px;
            margin-bottom: 10px;
        }

        .btn {
            margin-top: 15px;
            background: #27ae60;
            color: white;
            border: none;
            padding: 10px 16px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn:hover {
            background: #219150;
        }

        @media (max-width: 600px) {
            .pesanan-item {
                padding: 12px;
            }
        }
        .btn-batalkan {
    background-color: #e00000;   
    color: #fff;
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: 0.2s;
    float: right;
}

.btn-batalkan:hover {
    background-color: #b00000; 

}

.pesanan-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: box-shadow 0.3s ease;
}

.pesanan-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.pesanan-item h4 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    padding-right: 150px; /* Beri ruang untuk tanggal */
}

.pesanan-item .tanggal {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 500;
}

.menu-items {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.menu-items p {
    margin: 8px 0;
    font-size: 14px;
    color: #34495e;
    line-height: 1.6;
}

.pesanan-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 16px 0;
}

.pesanan-info p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.pesanan-info p strong {
    color: #2c3e50;
    font-weight: 600;
}

.total-harga {
    background: #ecf0f1;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 16px 0;
    font-size: 16px;
    font-weight: 700;
    color: #27ae60;
}

.status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status.menunggu {
    background: #fff3cd;
    color: #856404;
}

.status.diproses {
    background: #cfe2ff;
    color: #084298;
}

.status.selesai {
    background: #d1e7dd;
    color: #0f5132;
}

.status.dibatalkan {
    background: #f8d7da;
    color: #842029;
}

.catatan {
    background: #e7f3ff;
    border-left: 4px solid #3498db;
    padding: 12px 16px;
    margin: 16px 0;
    font-size: 14px;
    font-style: italic;
    color: #2c3e50;
}

.btn-batalkan {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.btn-batalkan:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

.btn-batalkan:active {
    transform: translateY(0);
}

.no-data {
    text-align: center;
    padding: 40px;
    color: #95a5a6;
    font-size: 16px;
}