Add custom CSS in the wordpress admin area

To add custom CSS in the wordpress admin area, you can use this function, in your function file

function my_custom_css() {
    echo '<style>
        .post-type-product #ovaem_sectionid {
            display: none !important;
        } 
    </style>';
}
add_action('admin_head', 'my_custom_css' );