/* Meal Filter for Elementor */

/* Any element used as a trigger should feel clickable. */
[class*="mf-show-"] {
	cursor: pointer;
}

/* Styling for the optional [meal_filter_buttons] shortcode only.
   Elementor button widgets keep their own design. */
.mf-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 24px;
}

.mf-btn {
	appearance: none;
	border: 0;
	border-radius: 4px;
	background: #eeeeee;
	color: #222222;
	padding: 12px 28px;
	font: inherit;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.mf-btn:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}
