       .ticket-form {
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .custom-input {
            border-radius: 8px;
            padding: 12px;
            border: 1px solid #ddd;
        }

        /* Popup Styling */
        .popup-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.7);
            display: none; /* Hidden by default */
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .popup-box {
            background: white;
            padding: 30px;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            text-align: left;
            position: relative;
        }

        .popup-box h3 { color: #0d6efd; margin-bottom: 20px; }
        .popup-box hr { margin: 20px 0; }
        
        .terms-list {
            font-size: 0.9rem;
            color: #555;
            padding-left: 20px;
        }

        .btn-confirm { background-color: #28a745; color: white; border: none; padding: 10px 20px; border-radius: 5px; }
        .btn-confirm:disabled { background-color: #ccc; cursor: not-allowed; }