/* Floating button */
#chat-toggle {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #0073aa;
	color: white;
	padding: 12px 15px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
	z-index: 9999;
	}

	/* Chat window */
	#capermint-chatbot {
	position: fixed;
	bottom: 70px;
	right: 20px;
	width: 320px;
	height: 400px;
	border: 1px solid #ddd;
	border-radius: 10px;
	background: white;
	display: flex;
	flex-direction: column;
	z-index: 9999;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	font-family: Arial, sans-serif;
	}

	/* Header */
	.chat-header {
	background: #0073aa;
	color: white;
	padding: 10px;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 10px 10px 0 0;
	cursor: default;
	}

	/* Messages */
	.chat-window {
	flex: 1;
	padding: 10px;
	overflow-y: auto;
	background: #fafafa;
	}

	.user-msg {
	text-align: right;
	background: #0073aa;
	color: white;
	padding: 6px 10px;
	margin: 5px;
	border-radius: 10px;
	display: inline-block;
	max-width: 80%;
	}

	.bot-msg {
	text-align: left;
	background: #eee;
	padding: 6px 10px;
	margin: 5px;
	border-radius: 10px;
	display: inline-block;
	max-width: 80%;
	}

	.typing-indicator {
	padding: 5px 10px;
	font-style: italic;
	font-size: 13px;
	color: #555;
	}

	/* Input area */
	.chat-input-area {
	display: flex;
	border-top: 1px solid #ddd;
	}

	#chat-input {
	flex: 1;
	padding: 8px;
	border: none;
	outline: none;
	}

	#chat-send {
	background: #0073aa;
	color: white;
	border: none;
	padding: 8px 12px;
	cursor: pointer;
	}
