 * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	font-size: 1em;
	background: #F26522;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

/* Logo background for desktop */
body::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 300px;
	height: auto;
	background-image: url('../img/lf_logo-transparent.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-origin: content-box;
	background-color: #111111;
	padding: 10px;
	border-radius: 8px;
	z-index: 1;
	aspect-ratio: 16/9;
}

#chat-loading-image {
	position:fixed;
	width:40px;
	top:50%;
	left:50%;
	margin-left:-20px;
	margin-top:-20px;
	display:none;
	z-index:9999999999;
}

.chatbot-container {
	width: 100%;
	max-width: 400px;
	height: 600px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	z-index: 10;
	transition: height 0.3s ease;
}

.chatbot-container.minimized {
	height: auto;
	min-height: 50px;
}

/* Screen Management */
.screen {
	display: none;
	width: 100%;
	height: 100%;
	flex-direction: column;
}

.screen.active {
	display: flex;
}

/* Common header for all screens */
.screen-header {
	background: #000072;
	color: white;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 20px 20px 0 0;
	min-height: 60px;
}

.chatbot-container.minimized .screen-header {
	border-radius: 20px;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-center {
	flex: 1;
	text-align: center;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-title {
	font-weight: 700;
	font-size: 1.2em;
}
.top-nav-logo {
	width:42px;
	height:42px;
	vertical-align:middle;
}

.minimize-btn, .expand-btn, .back-button {
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	padding: 5px;
	border-radius: 8px;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
}

.minimize-btn img, .expand-btn img {
	width: 18px;
	height: 10px;
}

.minimize-btn:hover, .expand-btn:hover, .back-button:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.expand-btn {
	display: none;
}

.chatbot-container.minimized .minimize-btn {
	display: none;
}

.chatbot-container.minimized .expand-btn {
	display: flex;
}

/* Sign-in Screen */
.signin-screen {
	justify-content: flex-start;
}

.signin-content {
	padding: 40px 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.chatbot-container.minimized .signin-content {
	display: none;
}

.signin-header {
	margin-bottom: 30px;
}

.signin-title {
	font-size: 1.8em;
	font-weight: 700;
	color: #333;
	margin-bottom: 10px;
}

.signin-subtitle {
	font-size: 0.9em;
	font-weight: 500;
	color: #666;
	margin-bottom: 30px;
}

.signin-form {
	width: 100%;
	max-width: 300px;
}

.phone-input-group {
	display: flex;
	margin-bottom: 20px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	background: white;
}

.country-code {
	background: #f8f9fa;
	padding: 14px 16px;
	border-right: 1px solid #e5e7eb;
	font-size: 16px;
	color: #333;
	min-width: 60px;
	font-weight: 500;
}

.phone-input {
	flex: 1;
	padding: 14px 16px;
	border: none;
	font-size: 16px;
	outline: none;
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
}

.phone-input::placeholder {
	color: #ccc;
}

.license-key-section {
	margin: 20px 0;
}

.license-key-label {
	font-size: 0.9em;
	font-weight: 500;
	color: #666;
	margin-bottom: 10px;
	text-align: left;
}

.license-key-input {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	font-size: 16px;
	outline: none;
	transition: border-color 0.3s ease;
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
}

.license-key-input:focus {
	border-color: #000072;
}

.remember-me-group {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 25px 0;
	padding: 0 5px;
}

.remember-me-label {
	font-size: 1em;
	font-weight: 500;
	color: #333;
}

/* Toggle Switch */
.toggle-switch {
	position: relative;
	width: 50px;
	height: 28px;
	background: #e5e7eb;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.toggle-switch.active {
	background: #000072;
}

.toggle-switch::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 24px;
	height: 24px;
	background: white;
	border-radius: 50%;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch.active::after {
	left: 24px;
}

.signin-button {
	width: 100%;
	padding: 16px;
	background: linear-gradient(45deg, #000072, #66B2E3);
	color: white;
	border: none;
	border-radius: 25px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 20px;
	font-family: 'Outfit', sans-serif;
}

.signin-button:hover {
	background: linear-gradient(45deg, #000060, #5AA0D0);
	transform: translateY(-2px);
}

.privacy-text {
	font-size: 0.9em;
	font-weight: 500;
	color: #888;
	line-height: 1.4;
}

.privacy-text a {
	color: #66B2E3;
	text-decoration: none;
}

/* Verification Screen */
.verification-screen {
	justify-content: flex-start;
}

.verification-content {
	padding: 40px 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
}

.chatbot-container.minimized .verification-content {
	display: none;
}

.verification-title {
	font-size: 1.8em;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
}

.verification-subtitle {
	font-size: 0.9em;
	font-weight: 500;
	color: #666;
	margin-bottom: 40px;
	line-height: 1.4;
}

.code-input-group {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-bottom: 40px;
}

.code-input {
	width: 50px;
	height: 60px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	outline: none;
	transition: all 0.3s ease;
	font-family: 'Outfit', sans-serif;
}

.code-input:focus {
	border-color: #000072;
	background: #fff8f0;
}

.continue-button {
	width: 100%;
	max-width: 300px;
	padding: 16px;
	background: linear-gradient(45deg, #000072, #66B2E3);
	color: white;
	border: none;
	border-radius: 25px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Outfit', sans-serif;
}

.continue-button:hover {
	background: linear-gradient(45deg, #000060, #5AA0D0);
	transform: translateY(-2px);
}

/* Chat Screen Header */
.chatbot-header {
	background: #000072;
	color: white;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 20px 20px 0 0;
}

.chatbot-container.minimized .chatbot-header {
	border-radius: 20px;
}

.settings-btn {
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	padding: 5px;
	border-radius: 8px;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
}

.settings-btn img {
	width: 20px;
	height: 20px;
}

.settings-btn:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.awards-btn {
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	padding: 5px;
	border-radius: 8px;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
}

.awards-btn img {
	width: 20px;
	height: 20px;
}

.awards-btn:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.goals-btn {
	background: none;
	border: none;
	color: white;
	font-size: 18px;
	cursor: pointer;
	padding: 5px;
	border-radius: 8px;
	transition: background-color 0.3s ease;
	display: none;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
}

.goals-btn:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.chatbot-title {
	font-weight: 700;
	font-size: 1.2em;
}

.status-indicator {
	width: 10px;
	height: 10px;
	background: #4ade80;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

.chatbot-container.minimized .status-indicator {
	display: none;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

/* Chat Area */
.chat-area {
	flex: 1;
	padding: 20px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
	background: #fafafa;
}

.chatbot-container.minimized .chat-area {
	display: none;
}

.chat-area::-webkit-scrollbar {
	width: 6px;
}

.chat-area::-webkit-scrollbar-track {
	background: transparent;
}

.chat-area::-webkit-scrollbar-thumb {
	background: #d1d5db;
	border-radius: 10px;
}

/* Chat Bubbles */
.message {
	max-width: 80%;
	word-wrap: break-word;
}

.bot-message {
	align-self: flex-start;
}

.user-message {
	align-self: flex-end;
}

.message-bubble {
	padding: 12px 16px;
	border-radius: 18px;
	font-size: 1em;
	font-weight: 500;
	line-height: 1.4;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bot-message .message-bubble {
	background: #ffffff;
	color: #333;
	border-bottom-left-radius: 6px;
}

.user-message .message-bubble {
	background: #000072;
	color: white;
	border-bottom-right-radius: 6px;
}

/* Bot Profile */
.bot-profile {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
	gap: 8px;
}

.bot-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
}

.bot-name {
	font-weight: 700;
	font-size: 1em;
	color: #333;
}

/* Calendar Component */
.calendar-widget {
	background: #ffffff;
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	margin: 10px 0;
}

.calendar-header {
	text-align: center;
	font-weight: 700;
	font-size: 1.2em;
	margin-bottom: 12px;
	color: #333;
}

.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
	text-align: center;
}

.calendar-day {
	padding: 8px 4px;
	font-size: 1em;
	font-weight: 500;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.calendar-day.header {
	font-weight: 700;
	color: #666;
	cursor: default;
}

.calendar-day:not(.header):hover {
	background: #e5e7eb;
}

.calendar-day.selected {
	background: #000072;
	color: white;
}

.calendar-day.today {
	background: #fef3c7;
	font-weight: 700;
}

/* Form Elements */
.form-widget {
	background: #ffffff;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	margin: 10px 0;
}

.form-group {
	margin-bottom: 16px;
}

.form-label {
	display: block;
	margin-bottom: 6px;
	font-weight: 700;
	color: #374151;
	font-size: 1em;
}

.form-input {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	font-size: 1em;
	font-weight: 500;
	transition: all 0.3s ease;
	background: #ffffff;
	font-family: 'Outfit', sans-serif;
}

.form-input:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-select {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	font-size: 1em;
	font-weight: 500;
	background: #ffffff;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Outfit', sans-serif;
}

.form-select:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Checkbox and Radio Styles */
.checkbox-group, .radio-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.checkbox-item, .radio-item {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	padding: 8px;
	border-radius: 8px;
	transition: background-color 0.2s ease;
	font-weight: 500;
}

.checkbox-item:hover, .radio-item:hover {
	background: #f9fafb;
}

.custom-checkbox, .custom-radio {
	width: 20px;
	height: 20px;
	border: 2px solid #d1d5db;
	border-radius: 4px;
	position: relative;
	transition: all 0.3s ease;
}

.custom-radio {
	border-radius: 50%;
}

.checkbox-item input[type="checkbox"]:checked + .custom-checkbox,
.radio-item input[type="radio"]:checked + .custom-radio {
	background: #000072;
	border-color: #667eea;
}

.checkbox-item input[type="checkbox"]:checked + .custom-checkbox::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 12px;
	font-weight: bold;
}

.radio-item input[type="radio"]:checked + .custom-radio::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	background: white;
	border-radius: 50%;
}

.checkbox-item input, .radio-item input {
	display: none;
}

/* Round Buttons */
.button-group {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.round-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 25px;
	font-size: 1em;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #f3f4f6;
	color: #374151;
	font-family: 'Outfit', sans-serif;
}

.round-btn.primary {
	background: #000072;
	color: white;
}

.round-btn.secondary {
	background: #e5e7eb;
	color: #374151;
}

.round-btn.success {
	background: #10b981;
	color: white;
}

.round-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Survey Widget */
.survey-widget {
	background: #ffffff;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	margin: 10px 0;
}

.survey-question {
	font-size: 1.2em;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
	text-align: center;
	line-height: 1.4;
}

.survey-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.survey-btn {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	background: #ffffff;
	color: #374151;
	font-size: 1em;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	font-family: 'Outfit', sans-serif;
}

.survey-btn:hover {
	border-color: #667eea;
	background: #f8f9ff;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.survey-btn.selected {
	border-color: #667eea;
	background: #000072;
	color: white;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.survey-btn:active {
	transform: translateY(0);
}

/* Input Area */
.input-area {
	padding: 20px;
	background: #ffffff;
	border-top: 1px solid #e5e7eb;
	display: flex;
	gap: 12px;
	align-items: flex-end;
}

.chatbot-container.minimized .input-area {
	display: none;
}

.message-input {
	flex: 1;
	padding: 12px 16px;
	border: 2px solid #e5e7eb;
	border-radius: 20px;
	font-size: 1em;
	font-weight: 500;
	resize: none;
	max-height: 100px;
	min-height: 44px;
	transition: all 0.3s ease;
	font-family: 'Outfit', sans-serif;
}

.message-input:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.send-btn {
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: #000072;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	padding: 0;
}

.send-btn img {
	width: 24px;
	height: 24px;
}

.send-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.send-btn:active {
	transform: scale(0.95);
}

/* Settings Panel */
.settings-panel {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #ffffff;
	transition: left 0.3s ease;
	z-index: 1000;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
}

.settings-panel.open {
	left: 0;
}

.settings-header {
	background: #000072;
	color: white;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 20px 20px 0 0;
}

.close-settings {
	background: none;
	border: none;
	color: white;
	font-size: 18px;
	cursor: pointer;
	padding: 5px;
	border-radius: 8px;
	transition: background-color 0.3s ease;
}

.close-settings:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.settings-content {
	padding: 20px;
	flex: 1;
}

.setting-item {
	padding: 15px 0;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 500;
}

.setting-item:last-child {
	border-bottom: none;
}

/* Awards Panel */
.awards-panel {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #ffffff;
	transition: left 0.3s ease;
	z-index: 1000;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
}

.awards-panel.open {
	left: 0;
}

.awards-header {
	background: #000072;
	color: white;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 20px 20px 0 0;
}

.close-awards {
	background: none;
	border: none;
	color: white;
	font-size: 18px;
	cursor: pointer;
	padding: 5px;
	border-radius: 8px;
	transition: background-color 0.3s ease;
}

.close-awards:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.awards-content {
	padding: 20px;
	flex: 1;
	overflow-y: auto;
}

.award-item {
	padding: 15px 0;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	align-items: center;
	gap: 15px;
}

.award-item:last-child {
	border-bottom: none;
}

.award-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #f3f4f6;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.award-info {
	flex: 1;
}

.award-title {
	font-weight: 700;
	font-size: 1.2em;
	color: #333;
	margin-bottom: 4px;
}

.award-description {
	font-size: 0.9em;
	font-weight: 500;
	color: #666;
	line-height: 1.4;
	margin-bottom: 8px;
}

.award-progress {
	width: 100%;
	height: 4px;
	background: #e5e7eb;
	border-radius: 2px;
	overflow: hidden;
	margin-top: 8px;
}

.award-progress-bar {
	height: 100%;
	background: #000072;
	border-radius: 2px;
	transition: width 0.3s ease;
}

.award-progress-text {
	font-size: 0.9em;
	font-weight: 500;
	color: #888;
	margin-top: 4px;
}

/* Goals Panel */
.goals-panel {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #ffffff;
	transition: left 0.3s ease;
	z-index: 1000;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
}

.goals-panel.open {
	left: 0;
}

.goals-header {
	background: #000072;
	color: white;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 20px 20px 0 0;
}

.close-goals {
	background: none;
	border: none;
	color: white;
	font-size: 18px;
	cursor: pointer;
	padding: 5px;
	border-radius: 8px;
	transition: background-color 0.3s ease;
}

.close-goals:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.goals-content {
	padding: 20px;
	flex: 1;
	overflow-y: auto;
}

.goals-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.goal-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
}

.goal-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.goal-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 15px;
	display: block;
}

.goal-title {
	font-weight: 700;
	font-size: 1em;
	color: #333;
	line-height: 1.4;
}

/* Desktop Responsive */
@media (min-width: 768px) {
	.chatbot-container {
		position: fixed;
		bottom: 20px;
		right: 20px;
		width: 380px;
		height: 600px;
		z-index: 1000;
	}
}

/* Mobile Responsive */
@media (max-width: 767px) {
	body {
		padding: 0;
		align-items: stretch;
		background: #f0f0f0;
	}

	body::before {
		display: none;
	}

	.chatbot-container {
		max-width: none;
		height: 100vh;
		border-radius: 0;
	}

	.chatbot-container.minimized {
		height: auto;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: auto;
	}

	.screen-header,
	.chatbot-header {
		border-radius: 0;
	}

	.chatbot-container.minimized .screen-header,
	.chatbot-container.minimized .chatbot-header {
		border-radius: 0;
	}

	.minimize-btn,
	.expand-btn {
		display: none !important;
	}

	.signin-content,
	.verification-content {
		padding: 30px 20px;
	}

	.code-input-group {
		gap: 10px;
	}

	.code-input {
		width: 45px;
		height: 55px;
	}

	.goals-grid {
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}

	.goal-card {
		padding: 15px;
	}

	.goal-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 10px;
	}

	.goal-title {
		font-size: 0.9em;
	}
}

.chat-suggestion-row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 8px;
  padding: 10px 0;
  margin: 10px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
	min-height:50px;
}
.chat-suggestion-row::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.chat-suggestion-btn {
  flex: 0 0 auto;
  display: inline-block;
  background-color: #ffffff;
  color: #000072;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  border: 1.5px solid #000072;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
  line-height: 1.4;
	min-height:40px;
}

.chat-suggestion-btn:hover {
  background-color: #000072;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 114, 0.2);
}