#mksaa-chat-widget {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
#mksaa-chat-toggle {
	background: #007cba;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s;
}
#mksaa-chat-toggle:hover {
	transform: scale(1.05);
}
#mksaa-chat-window {
	display: none;
	position: absolute;
	bottom: 80px;
	right: 0;
	width: 350px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	border: 1px solid #eaeaea;
	overflow: hidden;
	flex-direction: column;
}
#mksaa-chat-window.is-open {
	display: flex;
}
.mksaa-chat-header {
	background: #007cba;
	color: #fff;
	padding: 15px;
	font-weight: 600;
}
.mksaa-chat-body {
	height: 300px;
	overflow-y: auto;
	padding: 15px;
	background: #f9f9f9;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.mksaa-chat-msg {
	max-width: 80%;
	padding: 10px 14px;
	border-radius: 16px;
	font-size: 14px;
	line-height: 1.4;
}
.mksaa-chat-msg.visitor {
	background: #007cba;
	color: #fff;
	align-self: flex-end;
	border-bottom-right-radius: 4px;
}
.mksaa-chat-msg.admin {
	background: #e5e5ea;
	color: #333;
	align-self: flex-start;
	border-bottom-left-radius: 4px;
}
.mksaa-chat-footer, .mksaa-chat-login {
	padding: 15px;
	background: #fff;
	border-top: 1px solid #eaeaea;
	display: flex;
	gap: 8px;
}
.mksaa-chat-login {
	flex-direction: column;
}
.mksaa-chat-input {
	flex: 1;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 20px;
	outline: none;
}
.mksaa-chat-btn {
	background: #007cba;
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 20px;
	cursor: pointer;
}