        .ticket-parent {
            width: 400px;
            text-align: center;
            display: block;
            margin: 0 auto;
            padding: 0.7cm;
            /*border: 1px solid #000;*/
            background: #fff;
            position: relative;
            z-index: 99999;
        }
        .span-right {
            width: 22px;
            height: 100px;
            position: absolute;
            right: 0;
            top: 170px;
            background: #fff;
            z-index: 99999;
        }
        .span-left {
            width: 26px;
            height: 100px;
            position: absolute;
            left: 0;
            top: 170px;
            background: #fff;
            z-index: 99999;
        }
        .ticket {
            width: 350px;
            text-align: center;
            display: block;
            margin: 0 auto;
            border: 2px solid #00aaff;
            border-radius: 10px;
            background: white;
            /*overflow: hidden;*/
            /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
            font-family: Arial, sans-serif;
            padding: 0;
            justify-content: center;
            align-items: center;
            /*background-color: #f5f5f5;*/
            position: relative;
        }

        .ticket-header {
            background: #e9f7fe;
            padding: 15px;
            text-align: left;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .ticket-header h2 {
            margin: 0;
            font-size: 16px;
            color: #00aaff;
        }

        .ticket-header .ticket-id {
            text-align: right;
            color: #aaa;
            font-size: 12px;
        }

        .ticket-body {
            position: relative;
            padding: 15px;
        }

        .ticket-body-img {
            position: absolute;
            left: 12px;
            top: 32px;
        }
        .ticket-body-img img {
            max-height: 50px;
            width: auto;;
        }

        .ticket-body-img-right {
            position: absolute;
            right: 12px;
            top: 32px;
        }
        .ticket-body-img-right img {
            max-height: 45px;
            width: auto;;
        }

        .ticket-body h3 {
            margin: 0;
            font-size: 18px;
            color: #333;
        }

        .ticket-body p {
            margin: 5px 0;
            color: #666;
            font-size: 14px;
        }

        .ticket-body .time {
            color: #00aaff;
            font-weight: bold;
        }

        .ticket-qr {
            position: relative;
            margin: 15px 0;
            padding: 40px 15px;
            border-top: 1px dashed #ddd;
            border-bottom: 1px dashed #ddd;
        }
        .ticket-qr-left {
            position: absolute;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 4px solid green;
            clip-path: inset(0 0 0 50%);
            top: -15px;
            left: -17px;
            background: #fff;
        }
        .ticket-qr-right {
            position: absolute;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 4px solid green;
            clip-path: inset(0 50% 0 0);
            top: -15px;
            right: -17.4px;
            background: #fff;
        }

        .ticket-qr img {
            max-width: 250px;
            margin: 0 auto;
            display: block;
        }

        .ticket-qr .expired {
            color: #ff5a5a;
            font-size: 16px;
            margin-top: 10px;
        }

        .ticket-footer {
            padding: 10px;
            font-size: 14px;
            color: #ff5a5a;
            background: #fff7f7;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }
        .buttonTiket {
            margin-top: 20px;
            padding: 10px 20px;
            background: #00aaff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }

        .ticket-copyright {
            padding-top: 10px;
            padding-bottom: 10px;
        }
        .ticket-copyright span {
            display: inline-block;
        }
        .ticket-copyright span b {
            font-size: 13px;
        }
        .ticket-copyright span img {
            height: 10px;
            width: auto;
        }