
        /* Processing Modal Styles */
        .processing-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1099;
            display: none;
            animation: fadeIn 0.3s;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .processing-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            border-radius: 12px;
            width: 90%;
            max-width: 300px;
            z-index: 1100;
            display: none;
            text-align: center;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            animation: slideUp 0.3s;
        }
        @keyframes slideUp {
            from { opacity: 0; transform: translate(-50%, 10px); }
            to { opacity: 1; transform: translate(-50%, -50%); }
        }
        
        .processing-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(67, 97, 238, 0.2);
            border-radius: 50%;
            border-top-color: #4361ee;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .processing-title {
            font-weight: 600;
            margin-bottom: 5px;
            color: #2b2d42;
        }
        
        .processing-message {
            color: #6c757d;
            font-size: 14px;
        }
        
        .result-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 30px;
        }
        
        .success-icon {
            background-color: #ECFDF5;
            color: #10B981;
        }
        
        .failure-icon {
            background-color: #FEF2F2;
            color: #EF4444;
        }
        
        .redirect-message {
            margin-top: 15px;
            font-size: 13px;
            color: #6c757d;
        }
        
        .bi-arrow-repeat.spin {
            animation: spin 1s linear infinite;
            display: inline-block;
        }

        .processing-content{
            display: flex;
            flex-direction: column;
            align-items: stretch;
        }