Lazy-Blocks Adminstyle

/*	Admin-Style für Lazy-Blocks, da es einen CSS-Konflikt mit Kadence-Blocks gibt */
function mwm_admin_style()
{

	wp_enqueue_style( 'mwm-lzb-admin-styles', get_stylesheet_directory_uri() . '/lzb/admin-lzb.css' );
}

add_action( 'admin_enqueue_scripts', 'mwm_admin_style' );

CSS-Datei

.lazyblock {
	color: black	!important;
}

.lzb-gutenberg-repeater-btn-title, .lazyblocks-component-base-control__label {
	font-weight: bold !important;
	font-size: 18px !important;
} 

.lzb-content-title h6 {
	color: black !important;
	font-weight: bold !important;
	font-size: 18px !important;
}

button[data-active-item] {
	background-color: yellow;
}