.list-unstyled li {
height: auto !important;
min-height: 40px;
font-size: 15px;
align-items: center;
}
';
}
payment_gateway_include($clean_method, $payment_id);
}else{
$viewFile = __DIR__ . '/views/'.$transaction_details['response'][0]['transaction_status'].'-ui.php';
if (file_exists($viewFile)) {
include $viewFile;
} else {
echo "
Checkout UI not found.
";
}
}
}else{
$viewFile = __DIR__ . '/views/'.$transaction_details['response'][0]['transaction_status'].'-ui.php';
if (file_exists($viewFile)) {
include $viewFile;
} else {
echo "Checkout UI not found.
";
}
}
}
// Load the admin UI rendering function
function vercel_admin_page() {
$viewFile = __DIR__ . '/views/admin-ui.php';
if (file_exists($viewFile)) {
include $viewFile;
} else {
echo "Admin UI not found.
";
}
}
?>