.fcb-wrap {
	margin: 1.5em 0;
	text-align: center;
}

.fcb-clap-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45em;
	min-height: 42px;
	padding: 8px 16px;
	border: 1px solid #d8d8d8;
	border-radius: 999px;
	background: #fff;
	color: #222;
	font: inherit;
	line-height: 1.4;
	cursor: pointer;
}

.fcb-icon::before {
	content: "👏";
}

.fcb-icon-heart .fcb-icon::before {
	content: "♥";
}

.fcb-icon-like .fcb-icon::before {
	content: "👍";
}

.fcb-status {
	margin: 0.5em 0 0;
	min-height: 1.4em;
	font-size: 0.875em;
}

.fcb-clap-button.fcb-limit-reached {
	opacity: 0.6;
	cursor: default;
}

.fcb-wrap {
	position: relative;
}

.fcb-message-toggle {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 8px);
	z-index: 10;
	transform: translateX(-50%);
	margin: 0;
	padding: 3px 10px;
	border: 1px solid #222;
	border-radius: 6px;
	background: #222;
	color: #fff;
	font: inherit;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
	white-space: nowrap;
	cursor: pointer;
}

.fcb-message-toggle:hover {
	border-color: #555;
	background: #555;
}

.fcb-message-toggle:focus-visible {
	outline: 2px solid #222;
	outline-offset: 2px;
}

.fcb-message-form {
	max-width: 520px;
	margin: 1em auto 0;
	text-align: left;
}

.fcb-message-form p {
	margin: 0 0 0.8em;
}

.fcb-message-form label,
.fcb-field-label {
	display: block;
}

.fcb-field-label {
	margin-bottom: 0.3em;
	font-weight: 700;
}

.fcb-message-form input[type="text"],
.fcb-message-form textarea {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
}

.fcb-message-submit {
	padding: 6px 14px;
	cursor: pointer;
}

.fcb-is-hidden {
	display: none;
}

.fcb-clap-button {
	--fcb-icon-color: #555;
}

.fcb-clap-button .fcb-icon {
	filter: grayscale(1);
	opacity: 0.78;
	transition: filter 0.15s ease, opacity 0.15s ease;
}

.fcb-clap-button.fcb-active .fcb-icon {
	filter: grayscale(0);
	opacity: 1;
}

.fcb-clap-button.fcb-limit-reached {
	opacity: 0.6;
	cursor: default;
}

.fcb-recent-claps {
	margin: 0;
	padding-left: 1.25em;
}

.fcb-recent-claps li + li {
	margin-top: 0.35em;
}

