body {
	min-height: 100vh;
	margin: 0;
	font-family: 'Segoe UI', Arial, sans-serif;
	background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.chatbot-container {
	background: rgba(255,255,255,0.15);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	border-radius: 16px;
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.18);
	width: 350px;
	max-width: 90vw;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.chat-header {
	background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
	color: #fff;
	padding: 16px;
	font-size: 1.3em;
	font-weight: bold;
	text-align: center;
}

.chat-window {
	background: rgba(255,255,255,0.25);
	flex: 1;
	padding: 16px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 250px;
	max-height: 350px;
}

.chat-message {
	display: flex;
	flex-direction: column;
	max-width: 80%;
}

.chat-message.user {
	align-self: flex-end;
	background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
	color: #fff;
	border-radius: 12px 12px 0 12px;
	padding: 8px 12px;
	margin-left: auto;
}

.chat-message.bot {
	align-self: flex-start;
	background: #fff;
	color: #2575fc;
	border-radius: 12px 12px 12px 0;
	padding: 8px 12px;
	margin-right: auto;
	border: 1px solid #e0e0e0;
}

.chat-input-area {
	display: flex;
	border-top: 1px solid #e0e0e0;
	background: rgba(255,255,255,0.25);
}

.chat-input-area input {
	flex: 1;
	border: none;
	padding: 12px;
	font-size: 1em;
	border-radius: 0;
	outline: none;
	background: transparent;
	color: #333;
}

.chat-input-area button {
	background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
	color: #fff;
	border: none;
	padding: 0 20px;
	font-size: 1em;
	cursor: pointer;
	transition: background 0.2s;
}

.chat-input-area button:hover {
	background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
}
