
.chat-popup-notice {
	position: fixed;
	bottom: 95px;
	right: 30px;
	background-color: #ffffff;
	color: #333333;
	padding: 15px 35px 15px 15px;
	border-radius: 12px;
	box-shadow: 0 5px 25px rgba(0,0,0,0.15);
	max-width: 250px;
	font-size: 14px;
	line-height: 1.4;
	z-index: 999;
	animation: slideUp 0.5s ease-out;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.popup-close {
	position: absolute;
	top: 5px;
	right: 10px;
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	color: #999;
}

.chat-launcher {
	position: fixed;
	bottom: 25px;
	right: 30px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: hsl(200 100% 30%);
	color: #ffffff;
	border: none;
	cursor: pointer;
	box-shadow: 0 5px 25px rgba(0,0,0,0.15);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	transition: transform 0.2s ease;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.chat-launcher:hover {
	transform: scale(1.05);
}

.chat-window.hidden, .chat-launcher .hidden {
	display: none !important;
}

.chat-window {
	position: fixed;
	bottom: 100px;
	right: 30px;
	width: 360px;
	height: 500px;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 5px 25px rgba(0,0,0,0.15);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	animation: fadeIn 0.25s ease-out;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.chat-header {
	background-color: hsl(200 100% 30%);
	color: #ffffff;
	padding: 15px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.chat-header .avatar {
	font-size: 24px;
	background: rgba(255,255,255,0.2);
	padding: 8px;
	border-radius: 50%;
}

.chat-header h3 {
	margin: 0;
	font-size: 16px;
}

.chat-header p {
	margin: 2px 0 0 0;
	font-size: 12px;
	opacity: 0.8;
}

.chat-messages {
	flex: 1;
	padding: 15px;
	overflow-y: auto;
	background-color: #f4f7f6;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.message {
	max-width: 75%;
	padding: 10px 14px;
	border-radius: 14px;
	font-size: 14px;
	line-height: 1.4;
	word-break: break-word;
}

.message.bot {
	background-color: #ffffff;
	color: #333333;
	align-self: flex-start;
	border-bottom-left-radius: 2px;
}

.message.user {
	background-color: hsl(200 100% 30%);
	color: #ffffff;
	align-self: flex-end;
	border-bottom-right-radius: 2px;
}
.message a {
	color: hsl(200 100% 30%);
	text-decoration: underline;
}
.chat-input-area {
	padding: 12px;
	display: flex;
	gap: 8px;
	border-top: 1px solid #eee;
	background: #ffffff;
}

.chat-input-area input {
	flex: 1;
	border: 1px solid #ddd;
	padding: 10px 14px;
	border-radius: 20px;
	outline: none;
	font-size: 14px;
	color: #333333;
}

.chat-input-area button {
	background-color: hsl(200 100% 30%);
	color: #ffffff;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.typing-indicator {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 12px 16px !important;
	width: fit-content;
}

.typing-indicator span {
	height: 8px;
	width: 8px;
	background-color: #999;
	border-radius: 50%;
	display: inline-block;
	animation: bounce 1.3s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
	animation-delay: 0.15s;
}

.typing-indicator span:nth-child(3) {
	animation-delay: 0.3s;
}

@keyframes bounce {
	0%, 60%, 100% {
		transform: translateY(0);
	}

	30% {
		transform: translateY(-6px);
	}
}

@keyframes slideUp {
	from {
		transform: translateY(20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		transform: translateY(10px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}
