.wp-whatsapp-chat-widget {
	position: fixed;
	bottom: 20px;
	z-index: 9999;
	font-family: Arial, sans-serif;
}

.wp-whatsapp-chat-widget.right {
	right: 20px;
}

.wp-whatsapp-chat-widget.left {
	left: 20px;
}

.wp-whatsapp-chat-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
}

.wp-whatsapp-chat-icon:hover {
	transform: scale(1.1);
}

.wp-whatsapp-chat-popup {
	display: none;
	width: 300px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	margin-bottom: 20px;
	overflow: hidden;
}

.wp-whatsapp-chat-header {
	padding: 15px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.wp-whatsapp-chat-header h3 {
	margin: 0;
	font-size: 18px;
}

#wp-whatsapp-chat-close {
	cursor: pointer;
	font-size: 24px;
}

.wp-whatsapp-chat-body {
	padding: 15px;
}

.wp-whatsapp-chat-body p {
	margin: 0 0 10px 0;
	font-size: 14px;
	color: #333;
}

#wp-whatsapp-chat-message {
	width: 100%;
	height: 80px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	margin-bottom: 10px;
	resize: none;
	box-sizing: border-box;
}

#wp-whatsapp-chat-send {
	width: 100%;
	padding: 10px;
	border: none;
	border-radius: 5px;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
}
