Remove ALL css for a specific plugin page

You can try this function.

function remove_all_theme_styles() {
    global $wp_styles;
    $wp_styles->queue = array();
}
add_action('wp_print_styles', 'remove_all_theme_styles', 100);

This should work on any theme, but its not really a good approach to disable theme css just to make your plugin look good.