/* ── Credits pill ── */
.quota-pill {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	background: rgba(255, 255, 255, 0.07) !important;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	color: #94a3b8 !important;
	padding: 6px 14px !important;
	border-radius: 30px !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	white-space: nowrap !important;
}
.quota-pill i {
	color: #fbbf24 !important;
	font-size: 11px !important;
}
.quota-pill strong {
	color: #fbbf24 !important;
	font-weight: 800 !important;
	-webkit-text-fill-color: #fbbf24 !important;
}

/* ── User pill ── */
.user-pill {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	background: rgba(255, 255, 255, 0.07) !important;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	padding: 6px 14px !important;
	border-radius: 30px !important;
	font-size: 12px !important;
	cursor: pointer !important;
	white-space: nowrap !important;
	transition: background 0.2s !important;
}
.user-pill:hover {
	background: rgba(255, 255, 255, 0.12) !important;
}
.user-pill > i {
	font-size: 17px !important;
	color: rgba(255, 255, 255, 0.55) !important;
	flex-shrink: 0 !important;
}
.user-pill-info {
	display: flex !important;
	flex-direction: column !important;
	gap: 0 !important;
	line-height: 1.25 !important;
}
.user-pill-name {
	font-weight: 700 !important;
	color: #fbbf24 !important;
	-webkit-text-fill-color: #fbbf24 !important;
	font-size: 12px !important;
	white-space: nowrap !important;
}
.user-pill-email {
	font-size: 10.5px !important;
	color: rgba(255, 255, 255, 0.45) !important;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.45) !important;
	white-space: nowrap !important;
}

/* ── Sign-out button ── */
.hbtn-signout {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 7px !important;
	background: rgba(239, 68, 68, 0.15) !important;
	color: #fca5a5 !important;
	border: 1.5px solid rgba(239, 68, 68, 0.35) !important;
	border-radius: 30px !important;
	padding: 7px 16px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	cursor: pointer !important;
	white-space: nowrap !important;
	flex-shrink: 0 !important;
	transition:
		background 0.2s,
		color 0.2s !important;
	min-width: 0 !important;
	width: auto !important;
	height: auto !important;
}
.hbtn-signout:hover {
	background: rgba(239, 68, 68, 0.28) !important;
	color: #fff !important;
}
.hbtn-signout i {
	font-size: 13px !important;
	margin: 0 !important;
	flex-shrink: 0 !important;
}

/* Sign-out label — ALWAYS visible on all screens */
.signout-label {
	display: inline !important;
	visibility: visible !important;
	opacity: 1 !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	white-space: nowrap !important;
	color: inherit !important;
	pointer-events: none !important;
}

/* ══ ≤ 900px — compact, hide email ══ */
@media (max-width: 900px) {
	.header-right {
		gap: 7px !important;
	}
	.quota-pill {
		padding: 5px 12px !important;
	}
	.user-pill {
		padding: 5px 12px !important;
	}
	.user-pill-email {
		display: none !important;
	}
	.hbtn-signout {
		padding: 6px 14px !important;
		width: auto !important;
		height: auto !important;
		border-radius: 30px !important;
	}
	.signout-label {
		display: inline !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
}

/* ══ ≤ 600px — compact but label stays ══ */
@media (max-width: 600px) {
	.header-right {
		gap: 5px !important;
	}

	/* Credits: coin icon + number only */
	.quota-pill {
		padding: 5px 9px !important;
		gap: 5px !important;
		background: rgba(251, 191, 36, 0.13) !important;
		border: 1px solid rgba(251, 191, 36, 0.3) !important;
	}
	.quota-pill > span {
		font-size: 0 !important;
	}
	.quota-pill > span > strong {
		font-size: 12px !important;
		display: inline !important;
		color: #fbbf24 !important;
		-webkit-text-fill-color: #fbbf24 !important;
	}

	/* User pill: tighter */
	.user-pill {
		padding: 5px 9px !important;
		gap: 5px !important;
		max-width: 130px !important;
	}
	.user-pill > i {
		font-size: 15px !important;
	}
	.user-pill-name {
		font-size: 11px !important;
		max-width: 70px !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
	}

	/* Sign-out: compact pill — label STILL visible */
	.hbtn-signout {
		padding: 6px 10px !important;
		gap: 5px !important;
		width: auto !important;
		height: auto !important;
		border-radius: 30px !important;
		font-size: 11px !important;
	}
	.hbtn-signout i {
		font-size: 12px !important;
	}
	.signout-label {
		display: inline !important;
		visibility: visible !important;
		opacity: 1 !important;
		font-size: 11px !important;
	}
}

/* ══ ≤ 400px — tightest — label still visible ══ */
@media (max-width: 400px) {
	.header-right {
		gap: 4px !important;
	}
	.quota-pill {
		padding: 4px 7px !important;
	}
	.user-pill {
		padding: 4px 7px !important;
		max-width: 90px !important;
	}
	.user-pill > i {
		font-size: 13px !important;
	}
	.user-pill-name {
		font-size: 10px !important;
		max-width: 50px !important;
	}
	.hbtn-signout {
		padding: 5px 9px !important;
		gap: 4px !important;
		font-size: 10px !important;
		width: auto !important;
		height: auto !important;
		border-radius: 30px !important;
	}
	.hbtn-signout i {
		font-size: 11px !important;
	}
	.signout-label {
		display: inline !important;
		visibility: visible !important;
		opacity: 1 !important;
		font-size: 10px !important;
	}
}
.hbtn {
	padding: 7px 16px;
	border-radius: 20px;
	border: none;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
}
.progress {
	background: white;
	padding: 14px 32px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.steps {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 12px;
}
.step {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 20px;
	border-radius: 40px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	background: #f1f5f9;
	color: #64748b;
	flex: 1;
}
.step.active {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: #fbbf24;
	box-shadow:
		0 4px 16px rgba(15, 23, 42, 0.3),
		0 0 0 1px rgba(251, 191, 36, 0.2);
}
.step.done {
	background: #22c55e;
	color: white;
}
.step-number {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: currentColor;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
}
.step.active .step-number {
	background: #fbbf24;
	color: #0f172a;
}
.step.done .step-number {
	background: white;
	color: #22c55e;
}
.divider {
	width: 30px;
	height: 2px;
	background: #e2e8f0;
}
.container {
	max-width: 1200px;
	margin: 28px auto;
	padding: 0 24px;
}
.panel {
	background: white;
	border-radius: 20px;
	padding: 32px;
	margin-bottom: 24px;
	box-shadow:
		0 4px 6px rgba(0, 0, 0, 0.04),
		0 10px 30px rgba(0, 0, 0, 0.07);
	display: none;
	border: 1px solid rgba(226, 232, 240, 0.8);
	transition: box-shadow 0.3s ease;
}
.panel:hover {
	box-shadow:
		0 6px 8px rgba(0, 0, 0, 0.05),
		0 16px 40px rgba(0, 0, 0, 0.09);
}
.panel.active {
	display: block;
	animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.panel h2 {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 18px;
	color: #0f172a;
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: "Playfair Display", serif;
}
.panel h2 i {
	color: #fbbf24;
}
.form-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 20px;
}
.field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.field label {
	font-size: 12px;
	font-weight: 600;
	color: #475569;
	display: flex;
	align-items: center;
	gap: 6px;
}
.field label i {
	color: #fbbf24;
	width: 16px;
}
.field input,
.field select {
	padding: 11px 14px;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	font-size: 14px;
	font-family: "Plus Jakarta Sans", sans-serif;
	transition: all 0.2s;
}
.field input:focus,
.field select:focus {
	outline: none;
	border-color: #fbbf24;
	box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}
.required {
	color: #ef4444;
	font-size: 12px;
	margin-left: 3px;
}
.upload-area {
	border: 2px dashed #e2e8f0;
	border-radius: 20px;
	padding: 36px 24px;
	text-align: center;
	cursor: pointer;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	margin-bottom: 16px;
	position: relative;
}
.upload-area:hover,
.upload-area.dragover {
	border-color: #fbbf24;
	background: #fef9e7;
}
.upload-area input {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}
.upload-icon {
	font-size: 44px;
	color: #fbbf24;
	margin-bottom: 10px;
}
.upload-title {
	font-size: 15px;
	font-weight: 600;
	color: #0f172a;
	margin-bottom: 4px;
}
.upload-hint {
	font-size: 12px;
	color: #64748b;
}

/* ── Side-by-side upload layout ── */
.upload-panel-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: stretch;
}
.upload-left-col {
	display: flex;
	flex-direction: column;
}
.upload-right-col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.upload-right-col .upload-area {
	flex: 1;
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 160px;
}
.upload-instruction-box {
	background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
	border: 1px solid #bae6fd;
	border-left: 4px solid #3b82f6;
	border-radius: 12px;
	padding: 16px 18px;
	font-size: 12.5px;
	color: #1e3a8a;
	box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
	flex: 1;
}
.upload-instruction-box .inst-header {
	font-size: 13px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 7px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e0f2fe;
}
.upload-instruction-box .inst-header i {
	color: #3b82f6;
	font-size: 16px;
}
.upload-instruction-box .inst-step {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 9px;
	line-height: 1.5;
	font-size: 12px;
	color: #1e3a8a;
}
.upload-instruction-box .inst-num {
	background: #0f172a;
	color: #fbbf24;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	font-size: 10px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}
.upload-instruction-box .inst-warning {
	background: #fef3c7;
	border: 1px solid #fcd34d;
	border-radius: 8px;
	padding: 8px 10px;
	font-size: 11px;
	color: #92400e;
	margin-top: 12px;
	display: flex;
	gap: 6px;
	align-items: flex-start;
	line-height: 1.45;
}
.upload-instruction-box .inst-warning i {
	color: #f97316;
	flex-shrink: 0;
	margin-top: 1px;
}
.format-badges {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	margin: 8px 0 4px;
}
.format-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 9px;
	border-radius: 20px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.2px;
}
.format-badge.docx {
	background: #dbeafe;
	color: #1d4ed8;
}
.format-badge.pdf {
	background: #fce7f3;
	color: #be185d;
}
.format-badge.doc {
	background: #e0e7ff;
	color: #4338ca;
}

.logo-upload-field {
	margin-bottom: 20px;
	padding: 16px;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

.logo-upload-field label {
	font-weight: 600;
	color: #0f172a;
	margin-bottom: 8px;
	display: block;
}

.logo-upload-field small {
	color: #64748b;
	font-size: 11px;
	display: block;
	margin-top: 4px;
}

.logo-preview {
	max-width: 120px;
	max-height: 60px;
	margin-top: 10px;
	border: 1px solid #e2e8f0;
	padding: 4px;
	border-radius: 4px;
	background: white;
}

.plan-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 12px;
	margin: 20px 0 24px;
}

.plan-card {
	background: white;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	padding: 16px 8px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s;
}

.plan-card:hover {
	border-color: #fbbf24;
	background: #fef9e7;
	transform: translateY(-2px);
}

.plan-card.selected {
	border-color: #fbbf24;
	background: #fef9e7;
	box-shadow: 0 6px 12px rgba(251, 191, 36, 0.15);
}

.plan-card .units {
	font-weight: 700;
	font-size: 1.2rem;
	color: #0f172a;
}

.plan-card .price {
	font-size: 1.4rem;
	font-weight: 700;
	color: #0f172a;
	margin: 8px 0 4px;
}

.plan-card .price small {
	font-size: 0.8rem;
	font-weight: 400;
	color: #64748b;
}

.plan-card .badge {
	background: #e2e8f0;
	color: #0f172a;
	font-size: 0.7rem;
	padding: 0.2rem 0.8rem;
	border-radius: 20px;
	display: inline-block;
}

.btn-group-demo {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.btn-demo {
	background: #8b5cf6;
	color: white;
}

.btn-demo:hover {
	background: #7c3aed;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.watermark {
	position: relative;
	overflow: hidden;
}

.watermark::after {
	content: "SAMPLE - PAY TO DOWNLOAD";
	position: absolute;
	top: 30%;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 42px;
	font-weight: 900;
	color: rgba(255, 0, 0, 0.15);
	transform: rotate(-25deg);
	pointer-events: none;
	z-index: 1000;
	white-space: nowrap;
	letter-spacing: 8px;
	text-transform: uppercase;
}

.file-chips {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 8px;
}
.file-chip {
	background: #f0f9ff;
	border: 1px solid #bae6fd;
	border-radius: 20px;
	padding: 3px 12px;
	font-size: 12px;
	color: #0369a1;
	display: flex;
	align-items: center;
	gap: 6px;
}
.file-status {
	margin: 14px 0;
	padding: 11px 14px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 500;
	display: none;
	align-items: center;
	gap: 10px;
}
.file-status.show {
	display: flex;
}
.file-status.success {
	background: #f0fdf4;
	color: #166534;
	border: 1px solid #bbf7d0;
}
.file-status.error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}
.file-status.loading {
	background: #fffbeb;
	color: #92400e;
	border: 1px solid #fde68a;
}
.outcomes-preview {
	background: #0f172a;
	border-radius: 16px;
	padding: 18px;
	margin: 18px 0;
	display: none;
}
.outcomes-preview.show {
	display: block;
}
.outcomes-preview h4 {
	color: #fbbf24;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.outcomes-list {
	max-height: 220px;
	overflow-y: auto;
}
.outcome-item {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 8px 12px;
	margin-bottom: 5px;
	color: white;
	font-size: 12px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}
.outcome-number {
	min-width: 22px;
	height: 22px;
	background: #fbbf24;
	color: #0f172a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 11px;
	flex-shrink: 0;
	margin-top: 1px;
}
.outcome-text {
	flex: 1;
}
.subtopics-badge {
	display: inline-block;
	background: rgba(251, 191, 36, 0.2);
	color: #fbbf24;
	font-size: 10px;
	padding: 2px 6px;
	border-radius: 4px;
	margin-top: 3px;
}
.btn-group {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 22px;
	border-radius: 40px;
	font-size: 14px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
	flex: 1;
}
.btn-primary {
	background: #0f172a;
	color: #fbbf24;
}
.btn-primary:hover {
	background: #1e293b;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}
.btn-gold {
	background: #fbbf24;
	color: #0f172a;
}
.btn-gold:hover {
	background: #fcd34d;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}
.btn-ghost {
	background: transparent;
	border: 2px solid #e2e8f0;
	color: #64748b;
}
.btn-ghost:hover {
	border-color: #0f172a;
	color: #0f172a;
}
.btn-green {
	background: #22c55e;
	color: #fff;
}
.btn-green:hover {
	background: #16a34a;
	transform: translateY(-2px);
}
.btn[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
}
.summary-box {
	background: #f8fafc;
	border-radius: 16px;
	padding: 18px;
	margin-bottom: 18px;
	border: 1px solid #e2e8f0;
}
.summary-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 7px 0;
	border-bottom: 1px solid #e2e8f0;
	font-size: 13px;
}
.summary-item i {
	color: #fbbf24;
	width: 18px;
}
.summary-item:last-child {
	border-bottom: none;
}
#loading {
	display: none;
	padding: 30px 16px 40px;
}
.loading-card {
	background: #0f172a;
	border-radius: 20px;
	padding: 36px 32px 32px;
	max-width: 400px;
	margin: 0 auto;
	box-shadow:
		0 24px 60px rgba(15, 23, 42, 0.4),
		0 4px 16px rgba(15, 23, 42, 0.2);
	text-align: center;
}
.loading-card h3 {
	color: #fbbf24;
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 4px;
	letter-spacing: 0.2px;
}
.loading-card .loading-sub {
	color: #64748b;
	font-size: 11px;
	margin-bottom: 26px;
}
/* Dual-ring spinner */
.spinner {
	width: 52px;
	height: 52px;
	border: 3px solid rgba(251, 191, 36, 0.15);
	border-top-color: #fbbf24;
	border-right-color: rgba(251, 191, 36, 0.5);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	margin: 0 auto 22px;
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}
#loadingSteps {
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.lstep {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 10px;
	font-size: 12.5px;
	color: #475569;
	background: rgba(255, 255, 255, 0.03);
	transition: all 0.35s ease;
	border: 1px solid transparent;
}
.lstep .step-icon {
	font-size: 14px;
	width: 20px;
	text-align: center;
	flex-shrink: 0;
}
.lstep.active {
	color: #fbbf24;
	font-weight: 600;
	background: rgba(251, 191, 36, 0.1);
	border-color: rgba(251, 191, 36, 0.25);
	transform: translateX(5px);
}
.lstep.done {
	color: #4ade80;
	background: rgba(74, 222, 128, 0.07);
	border-color: rgba(74, 222, 128, 0.15);
}
.lstep.done .step-icon::before {
	content: "✓";
}
#output {
	display: none;
}
.output-header {
	background: #0f172a;
	border-radius: 16px;
	padding: 18px;
	color: white;
	margin-bottom: 18px;
}
.output-header h3 {
	font-size: 17px;
	color: #fbbf24;
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.output-header p {
	color: #94a3b8;
	font-size: 12px;
}
.counters {
	display: flex;
	gap: 10px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}
.counter {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 30px;
	padding: 5px 14px;
	font-size: 12px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
}
.counter-btn {
	cursor: pointer;
	transition: all 0.2s;
}
.counter-btn:hover {
	border-color: #fbbf24;
	background: #fefce8;
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(251, 191, 36, 0.2);
}
.counter-assess {
	border-color: #ddd6fe;
}
.counter-assess:hover {
	border-color: #7c3aed !important;
	background: #f5f3ff !important;
	box-shadow: 0 4px 10px rgba(124, 58, 237, 0.15) !important;
}
.tab-assess {
	margin-left: auto;
	color: #7c3aed !important;
}
.tab-assess.active {
	border-bottom-color: #7c3aed !important;
	color: #7c3aed !important;
}
.counter span {
	background: #0f172a;
	color: #fbbf24;
	padding: 2px 8px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
}
.tabs {
	display: flex;
	gap: 4px;
	border-bottom: 2px solid #e2e8f0;
	margin-bottom: 18px;
}
.tab {
	padding: 7px 14px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	color: #64748b;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
}
.tab.active {
	color: #0f172a;
	border-bottom-color: #fbbf24;
}
.toast {
	position: fixed;
	bottom: 20px;
	right: 20px;
	padding: 12px 20px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 500;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	display: none;
	align-items: center;
	gap: 10px;
	z-index: 9999;
}
.toast.show {
	display: flex;
	animation: slideIn 0.3s ease;
}
.toast.error {
	background: #ef4444;
	color: white;
}
.toast.success {
	background: #22c55e;
	color: white;
}
.toast.info {
	background: #3b82f6;
	color: white;
}
@keyframes slideIn {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

