#chat-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: #1d71b8;
	color: #fff;
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 99999;
}

#chat-widget {
	position: fixed;
	bottom: 85px;
	right: 20px;
	width: 320px;
	max-height: 500px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.25);
	display: none;
	flex-direction: column;
	z-index: 99999;
	font-family: Arial, sans-serif;
}

#chat-header {
	background: linear-gradient(2deg,#00DEFF,#7141B1);
	color: #fff;
	padding: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#chat-body {
	height: 300px;
	overflow-y: auto;
	padding: 10px;
	background: #f9f9f9;
}

.msg.user {
	text-align: right;
}

.msg.user span {
	background: linear-gradient(2deg,#00DEFF,#7141B1);
	color: #fff;
	padding: 8px 12px;
	border-radius: 14px;
	display: inline-block;
	max-width: 75%;
}

.bot-msg {
	background: #ececec;
	padding: 8px 12px;
	border-radius: 14px;
	max-width: 75%;
}

#chat-footer {
	display: flex;
	border-top: 1px solid #ddd;
}

#msg {
	flex: 1;
	border: none;
	padding: 10px;
	outline: none;
}

#send {
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
}
