/* Share controls on recipe detail page */
.recipe_share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 10px 0 18px;
	font-family: Oswald, 'Trebuchet MS', sans-serif;
}

.recipe_share_label {
	color: #777;
	font-size: 0.95rem;
	margin-right: 4px;
}

.recipe_share_btn {
	display: inline-block;
	padding: 7px 12px;
	border: 2px solid #ccc;
	border-radius: 4px;
	background: #fff;
	color: #333;
	font-size: 0.9rem;
	font-family: inherit;
	text-decoration: none;
	cursor: pointer;
	line-height: 1.2;
}

.recipe_share_btn:hover,
.recipe_share_btn:focus-visible {
	border-color: orange;
	outline: none;
}

.recipe_share_wa {
	background: #25d366;
	border-color: #25d366;
	color: #fff;
	font-weight: 600;
}

.recipe_share_wa:hover,
.recipe_share_wa:focus-visible {
	border-color: #1ebe57;
	background: #1ebe57;
	color: #fff;
}

.recipe_share_status {
	color: #2a7a2a;
	font-size: 0.85rem;
	min-height: 1em;
}
