/**
 * JFB UX Boosters — TinyMCE toolbar styling (JFB WYSIWYG field).
 * Targets TinyMCE 4.x classes used by WordPress's built-in editor.
 */

/* Default button style */
.mce-container .mce-btn button {
	color: #59564F !important;
	border: 1px solid #ffffff !important;
}

/* Hover */
.mce-container .mce-btn button:hover {
	color: #BFA169 !important;
	border: 1px solid #BFA169 !important;
}

/* Active / pressed */
.mce-container .mce-btn .mce-active {
	background-color: #ffffff !important;
	color: #BFA169 !important;
	border: 1px solid #BFA169 !important;
	border-radius: 3px !important;
}

/* Focus — remove default browser outline for consistent cross-browser rendering */
.mce-container .mce-btn button:focus {
	outline: none !important;
	box-shadow: none !important;
}
