        .gradient-bg {
            background: linear-gradient(135deg, #2CB1C0, #E95E5E);
            color: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        /* Ticket List Responsive Styling */
        .ticket-list {
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 1.25rem;
            margin-top: 2rem;
        }

        .ticket-list h4 {
            color: #2CB1C0;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .ticket-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 1rem;
            border-radius: 12px;
            background: #f9f9f9;
            margin-bottom: 0.75rem;
            transition: background-color 0.2s;
            flex-wrap: wrap;
        }

        .ticket-info-wrapper {
            flex: 1;
            min-width: 0;
            /* Prevents flex items from overflowing */
            padding-right: 10px;
        }

        .ticket-title p {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .ticket-details {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            align-items: center;
        }

        .time-info {
            font-size: 0.85rem;
            color: #6c757d;
        }

        .qty-info {
            font-size: 0.85rem;
        }

        .badge {
            padding: 0.35em 0.65em;
            background-color: #e9ecef;
            color: #212529;
        }

        .ticket-price {
            white-space: nowrap;
            font-weight: 600;
            font-size: 1rem;
            text-align: right;
            padding-left: 10px;
        }

        .ticket-total {
            border-top: 1px solid #f0f0f0;
            padding-top: 1rem;
            margin-top: 0.5rem;
        }

        .total-label {
            font-weight: 600;
            color: #495057;
            font-size: 0.95rem;
        }

        .total-value {
            font-weight: 700;
            font-size: 1.1rem;
            color: #2CB1C0;
        }

        /* Enhanced mobile responsiveness */
        @media (max-width: 576px) {
            .ticket-list {
                padding: 1rem;
            }

            .ticket-item {
                padding: 0.75rem;
            }

            .ticket-title p {
                font-size: 0.95rem;
            }

            .time-info {
                font-size: 0.8rem;
            }

            .ticket-price {
                font-size: 0.95rem;
                margin-top: 0.5rem;
            }

            /* On very small screens, stack price below info */
            @media (max-width: 380px) {
                .ticket-item {
                    flex-direction: column;
                }

                .ticket-info-wrapper {
                    width: 100%;
                    padding-right: 0;
                    margin-bottom: 0.5rem;
                }

                .ticket-price {
                    width: 100%;
                    text-align: left;
                    padding-left: 0;
                }
            }
        }

        .order-info {
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 1.5rem;
            margin-top: 2rem;
            border: 1px solid #e0e0e0;
            transition: box-shadow 0.3s ease-in-out;
        }

        .order-info:hover {
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
        }

        .order-info .label {
            color: #2CB1C0;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .order-info .value {
            font-size: 0.95rem;
        }

        .payment-timer {
            background-color: #f8f9ff;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 1.5rem;
            margin-top: 2rem;
        }

        .timer-display {
            display: flex;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .timer-box {
            text-align: center;
            margin: 0 0.5rem;
        }

        .timer-value {
            font-size: 2.5rem;
            font-weight: bold;
            line-height: 1;
            display: block;
            margin-bottom: 0.25rem;
        }

        .timer-hours {
            color: #007bff;
        }

        .timer-minutes {
            color: #28a745;
        }

        .timer-seconds {
            color: #ffc107;
        }

        .timer-label {
            font-size: 0.8rem;
            color: #6c757d;
        }

        .va-card {
            border: 1px solid #dee2e6;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
        }

        .va-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .va-field {
            margin-bottom: 1rem;
        }

        .va-field-label {
            font-size: 0.8rem;
            color: #6c757d;
            margin-bottom: 0.25rem;
        }

        .va-field-value {
            font-weight: bold;
            font-size: 1rem;
        }

        .va-number-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 5px;
        }

        .va-number-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copy-btn {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 0.25rem;
            padding: 0.4rem 0.7rem;
            font-size: 0.8rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s ease;
        }

        .copy-btn:hover {
            background-color: #e2e6ea;
        }

        .copy-btn:active {
            background-color: #dae0e5;
        }

        .va-field-value {
            font-weight: bold;
            font-size: 1rem;
            margin-right: 10px;
            flex-grow: 1;
        }

        .instruction-btn {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            text-align: left;
            padding: 1rem;
            border: none;
            background: none;
            cursor: pointer;
        }

        .instruction-btn:hover {
            background-color: #f8f9fa;
        }

        .instruction-btn:focus {
            outline: none;
        }

        /* Improved Payment Instruction Modal Styling */
        .payment-modal .modal-header {
            background: linear-gradient(135deg, #2CB1C0, #E95E5E);
            color: white;
            border-radius: 10px 10px 0 0;
            padding: 1rem 1.5rem;
        }

        .payment-modal .modal-title {
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .instruction-list {
            counter-reset: instruction-counter;
            list-style-type: none;
            padding: 0;
            margin: 0;
        }

        .instruction-item {
            position: relative;
            padding: 0.8rem 0.5rem 0.8rem 3rem;
            border-bottom: 1px solid #eee;
            counter-increment: instruction-counter;
            display: flex;
            align-items: flex-start;
        }

        .instruction-item:last-child {
            border-bottom: none;
        }

        .instruction-item::before {
            content: counter(instruction-counter);
            position: absolute;
            left: 0.5rem;
            top: 0.8rem;
            width: 28px;
            height: 28px;
            background-color: #2CB1C0;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .instruction-content {
            flex: 1;
            padding-top: 0.2rem;
            line-height: 1.5;
        }

        @media (max-width: 576px) {
            .payment-modal .modal-dialog {
                margin: 0.5rem;
                max-width: calc(100% - 1rem);
            } 
 
            .instruction-item { 
                padding-left: 2.5rem;
            } 

            .instruction-item::before {
                width: 24px;
                height: 24px;
                font-size: 0.8rem;
            }
        }
 
        

        .payment-modal .modal-header {
            background: linear-gradient(135deg, #2CB1C0, #E95E5E);
            color: white;
            border-radius: 10px 10px 0 0;
        }

        .payment-modal .modal-title {
            color: white;
            font-weight: bold;
        }

        .instruction-step {
            padding: 1rem;
            border-bottom: 1px solid #eee;
            counter-increment: instruction-step;
        }

        .instruction-step:before {
            content: counter(instruction-step);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            background-color: #2CB1C0;
            color: white;
            border-radius: 50%;
            margin-right: 1rem;
            font-weight: bold;
        }

        .instruction-step:last-child {
            border-bottom: none;
        }

        .qr-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            background-color: #f8f9fa;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
        }

        .qr-code {
            width: 180px;
            height: 180px;
            border: 2px solid #dee2e6;
            border-radius: 0.5rem;
            padding: 0.5rem;
            background-color: white;
            margin-bottom: 1rem;
        }

        .qr-note {
            font-size: 0.9rem;
            color: #6c757d;
            text-align: center;
        }

        /* Responsive order for mobile */
        @media (max-width: 767px) {
            .row.content-wrapper {
                display: flex;
                flex-direction: column;
            }

            .payment-column {
                order: -1;
                /* Moves this column to the top */
            }

            .sticky-payment {
                position: sticky;
                top: 0;
                z-index: 100;
                background-color: rgba(255, 255, 255, 0.95);
                padding-top: 15px;
                margin-top: 0;
            }
        }


        .mandiri-payment-info {
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        
        .payment-code-section, .payment-number-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
        }
        
        .payment-code-section {
            border-bottom: 1px dashed #ddd;
            margin-bottom: 8px;
        }
        
        .mandiri-payment-info .label {
            font-size: 0.85rem;
            color: #666;
        }
        
        .mandiri-payment-info .value {
            font-weight: bold;
            font-size: 1rem;
            color: #333;
        }
        
        .copy-btn-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }


        @media (max-width: 576px) {
            .order-info .list-group-item {
                font-size: 14px;  /* Smaller text for mobile */
                padding: 10px;    /* Adjust padding */
            }
        
            .order-info .label {
                font-size: 12px;  /* Smaller label font size */
            }
        
            .order-info .value {
                font-size: 14px;  /* Adjust value font size */
            }
        }
        