.fb-float-button {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fb-float-button:hover {
	transform: scale(1.06);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.fb-float-button .dashicons {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.fb-float-button img {
	max-width: 80%;
	max-height: 80%;
	display: block;
	flex-shrink: 0;
	margin: auto;
}

.fb-tooltip {
	position: absolute;
	bottom: 50%;
	transform: translateY(50%);
	white-space: nowrap;
	background: #1d2327;
	color: #fff;
	font-size: 13px;
	line-height: 1.4;
	padding: 6px 10px;
	border-radius: 4px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.fb-float-button:hover .fb-tooltip {
	opacity: 1;
}

.fb-tooltip-right {
	right: 100%;
	margin-right: 10px;
}

.fb-tooltip-left {
	left: 100%;
	margin-left: 10px;
}

@media (max-width: 480px) {
	.fb-tooltip {
		display: none;
	}
}
