body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.load-conversation-form {
	display: none;
}

.chatbot-container {
	position: fixed;
	bottom: 0px;
	right: 0px;
	z-index: 1000;
	width: 100%;
	max-width: 400px;
}

.chatbot {
	width: 100%;
	height: 70vh;
	max-height: 600px;
	background-color: white;
	border-radius: 0.5rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.chatbot-header {
	background-color: #2F58E2;
	color: white;
	padding: 0.75rem;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.chatbot-messages {
	flex: 1;
	overflow-y: auto;
	padding: 0.5rem;
	min-height: 0;
	width: 100%;
	box-sizing: border-box;
	font-size: 0.9em;
	margin: 0.5em 0;
}

.chatbot-footer {
	display: flex;
	padding: 0.5rem;
	border-top: 1px solid #e5e7eb;
	background-color: #ffffff;
	width: 100%;
	box-sizing: border-box;
}

.chatbot-input {
	flex: 1;
	padding: 0.5rem;
	border: 1px solid #d1d5db;
	border-radius: 0.25rem;
	margin-right: 0.5rem;
	resize: none;
	font-family: inherit;
}

.chatbot-send {
	padding: 0.5rem 1rem;
	background-color: #2F58E2;
	color: white;
	border: none;
	border-radius: 0.25rem;
	cursor: pointer;
}

.chat-toggle {
	width: 0px;
	height: 0px;
	border-radius: 0%;
	background-color: #ffffff;
	color: white;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.message-description {
	background-color: #f8f8f8;
	border-radius: 8px;
	padding: 10px;
	margin-bottom: 15px;
	font-style: italic;
	color: #666;
	font-size: 0.8em;
}

.message-bot,
.message-user {
	margin-bottom: 0.5rem;
	max-width: 100%;
}

.message-bot span,
.message-user span {
	display: inline-block;
	padding: 0.5rem;
	border-radius: 0.5rem;
	max-width: 90%;
	word-wrap: break-word;
	box-sizing: border-box;
}

.message-bot span {
	background-color: #e5e7eb;
}

.message-user span {
	background-color: #2F58E2;
	color: white;
}

.message-bot span p,
.message-user span p {
	font-size: inherit;
	margin: 0;
}

.message-bot span p:not(:last-child),
.message-user span p:not(:last-child) {
	margin-bottom: 0.5em;
}

.response-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
	width: 100%;
}

.response-option {
	background-color: #f0f0f0;
	border: 1px solid #ccc;
	border-radius: 15px;
	padding: 5px 10px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.response-option:hover {
	background-color: #e0e0e0;
}

.response-option.selected {
	background-color: #d0d0d0;
	font-weight: bold;
}

.copy-button {
	background-color: #4CAF50;
	border: none;
	color: white;
	cursor: pointer;
	border-radius: 4px;
	padding: 0.5rem;
	margin-left: auto;
}

.copy-button:hover {
	background-color: #45a049;
}

.copy-button:hover::after {
	content: attr(title);
	position: absolute;
	top: -30px;
	right: 0;
	background-color: #333;
	color: #fff;
	padding: 5px;
	border-radius: 4px;
	white-space: nowrap;
	z-index: 10;
	font-size: 0.75rem;
	opacity: 0.9;
}

.loading-dots {
	display: inline-block;
	padding: 4px 12px;
	background-color: #f0f0f0;
	border-radius: 10px;
	margin-bottom: 6px;
}

.loading-dots::after {
	content: '.';
	display: inline-block;
	width: 12px;
	text-align: left;
	animation: dots 1.5s steps(5, end) infinite;
	font-size: 14px;
	line-height: 1;
	color: #666;
}

@keyframes dots {

	0%,
	20% {
		color: rgba(0, 0, 0, 0);
		text-shadow: .25em 0 0 rgba(0, 0, 0, 0), .5em 0 0 rgba(0, 0, 0, 0);
	}

	40% {
		color: #666;
		text-shadow: .25em 0 0 rgba(0, 0, 0, 0), .5em 0 0 rgba(0, 0, 0, 0);
	}

	60% {
		text-shadow: .25em 0 0 #666, .5em 0 0 rgba(0, 0, 0, 0);
	}

	80%,
	100% {
		text-shadow: .25em 0 0 #666, .5em 0 0 #666;
	}
}

@media (min-width: 768px) {
	.chatbot-container {
		bottom: 20px;
		right: 20px;
		width: 400px;
	}
}

@media (max-width: 600px) {
	.mobile-hide {
		display: none !important;
	}

	.chatbot-container {
		max-width: 35vh;
		font-size: 0.8em;
	}

	.chatbot {
		height: 60vh;
	}

	.chatbot-messages {
		padding: 0.25rem;
	}

	.message-bot span,
	.message-user span {
		max-width: 80%;
	}

	.chatbot-footer {
		flex-wrap: wrap;
	}

	.chatbot-input {
		flex: 1 1 100%;
		margin-right: 0;
		margin-bottom: 0.5rem;
	}

	.chatbot-send {
		flex: 1 1 100%;
		padding: 0.75rem;
	}
}

.notification {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #4CAF50;
	color: white;
	padding: 5px 10px;
	border-radius: 5px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1001;
	opacity: 0;
	transition: opacity 0.3s ease, bottom 0.3s ease;
	display: none;
}

.notification.show {
	opacity: 1;
	bottom: 40px;
	display: block;
}

.support-message {
	margin-top: 20px;
	text-align: center;
	font-size: 14px;
	color: #666;
}

.about {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
	padding: 4rem 2rem;
	background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
	text-align: center;
	font-family: 'Arial', sans-serif;
}

.about p {
	max-width: 800px;
	margin: 1rem auto;
	color: #333;
	font-size: 1.5rem;
}

.about p:first-child {
	font-size: 2rem;
	font-weight: bold;
	color: #2F58E2;
	margin-bottom: 2rem;
}

.about p:nth-child(3) {
	color: #666;
}

.about p:last-child {
	font-size: 0.8rem;
	font-weight: bolder;
}

@media (max-width: 768px) {
	.about p {
		font-size: 1.2rem;
	}

	.about p:first-child {
		font-size: 1.6rem;
	}
}

.loading-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 8px solid #f3f3f3;
	border-top: 8px solid #3498db;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}