/* Floating Button Styles */
.wa-float-btn-b948b888 {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background-color: #25D366;
	color: #ffffff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
	z-index: 99999;
}

.wa-float-btn-b948b888:hover {
	transform: scale(1.1);
	background-color: #20ba5a;
}

/* Adjust for WordPress Admin Bar */
body.admin-bar .wa-float-btn-b948b888 {
	margin-bottom: var(--wp-admin--admin-bar--height, 0px);
}

/* Chat Popup Styles */
.wa-chat-popup-b948b888 {
	position: fixed;
	bottom: 105px;
	right: 30px;
	width: 340px;
	max-width: 90vw;
	background-color: #121212;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	display: none;
	flex-direction: column;
	overflow: hidden;
	z-index: 99998;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: 1px solid #222222;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.wa-chat-popup-b948b888.active-b948b888 {
	display: flex;
	opacity: 1;
	transform: translateY(0);
}

/* Popup Header */
.wa-popup-header-b948b888 {
	background-color: #1a1a1a;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #222222;
	position: relative;
}

.wa-avatar-container-b948b888 {
	position: relative;
	margin-right: 12px;
}

.wa-avatar-b948b888 {
	width: 44px;
	height: 44px;
	background-color: #FD751F;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.wa-status-dot-b948b888 {
	position: absolute;
	bottom: 2px;
	right: 2px;
	width: 10px;
	height: 10px;
	background-color: #25D366;
	border: 2px solid #1a1a1a;
	border-radius: 50%;
}

.wa-header-meta-b948b888 {
	flex-grow: 1;
}

.wa-agent-name-b948b888 {
	margin: 0 0 2px 0;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
}

.wa-agent-status-b948b888 {
	display: block;
	color: #888888;
	font-size: 11px;
}

.wa-close-btn-b948b888 {
	background: none;
	border: none;
	color: #888888;
	cursor: pointer;
	padding: 5px;
	transition: color 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wa-close-btn-b948b888:hover {
	color: #ffffff;
}

/* Popup Body */
.wa-popup-body-b948b888 {
	padding: 24px 20px;
	background-color: #121212;
}

.wa-message-bubble-b948b888 {
	background-color: #1a1a1a;
	color: #dddddd;
	padding: 12px 16px;
	border-radius: 12px;
	border-top-left-radius: 2px;
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	border: 1px solid #222222;
}

/* Popup Footer */
.wa-popup-footer-b948b888 {
	padding: 16px 20px;
	background-color: #1a1a1a;
	border-top: 1px solid #222222;
}

.wa-chat-btn-b948b888 {
	display: block;
	width: 100%;
	background-color: #FD751F; /* Modern Orange Accent */
	color: #ffffff;
	text-align: center;
	padding: 12px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.wa-chat-btn-b948b888:hover {
	background-color: #e06110;
	color: #ffffff;
}

.wa-chat-btn-b948b888:active {
	transform: scale(0.98);
}
