.whatsapp-float-196fb92f {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 30px;
	right: 30px;
	background-color: #25d366;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.whatsapp-float-196fb92f:hover {
	transform: scale(1.1);
	background-color: #128c7e;
	color: #fff;
}

.whatsapp-icon-196fb92f {
	margin: 0;
	padding: 0;
}

.whatsapp-tooltip-196fb92f {
	visibility: hidden;
	width: 120px;
	background-color: #333;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 100000;
	bottom: 125%; /* Position the tooltip above the button */
	right: 50%;
	margin-right: -60px;
	opacity: 0;
	transition: opacity 0.3s;
	font-family: Arial, sans-serif;
	font-size: 14px;
}

.whatsapp-float-196fb92f:hover .whatsapp-tooltip-196fb92f {
	visibility: visible;
	opacity: 1;
}

/* Adjust if WP Admin Bar is showing on mobile, but since it is at the bottom, it's generally safe */
@media screen and (max-width: 768px) {
	.whatsapp-float-196fb92f {
		width: 50px;
		height: 50px;
		bottom: 20px;
		right: 20px;
		font-size: 24px;
	}
}
