<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Hasil Booking Movie</title>
    <link rel="stylesheet" href="css/style.css">
</head>
<body>
    <div class="container d-flex justify-content-center align-items-center" style="height: 100vh;">
        <div class="col-md-6">
            <div class="card">
                <div class="card-body booking-details">
                    <h2 class="text-center mb-4">Hasil Booking Movie</h2>
                    <table class="table table-bordered">
                        <tr>
                            <th>Judul Movie</th>
                            <td><?php echo htmlspecialchars($_GET['judul_movie']); ?></td>
                        </tr>
                        <tr>
                            <th>Genre Movie</th>
                            <td><?php echo htmlspecialchars($_GET['genre_movie']); ?></td>
                        </tr>
                        <tr>
                            <th>Tanggal Booking</th>
                            <td><?php echo htmlspecialchars($_GET['tanggal_booking']); ?></td>
                        </tr>
                        <tr>
                            <th>Nomor Kursi</th>
                            <td><?php echo htmlspecialchars($_GET['nomor_kursi']); ?></td>
                        </tr>
                        <tr>
                            <th>Layanan Tambahan</th>
                            <td><?php echo htmlspecialchars($_GET['layanan_tambahan']); ?></td>
                        </tr>
                    </table>
                </div>
            </div>
        </div>
    </div>
</body>
</html>