.iqec-orchestrator-toast {
	position: fixed;
	left: 18px;
	bottom: 24px;
	z-index: 9999999;

	display: flex;
	align-items: flex-start;
	gap: 10px;

	width: min(380px, calc(100vw - 28px));
	padding: 13px 13px 13px 15px;

	border-radius: 20px;
	background: #0f172a;
	color: #ffffff;

	font-family: "Noto Kufi Arabic", Tahoma, Arial, sans-serif;

	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.26);

	opacity: 0;
	transform: translateY(12px) scale(0.96);
	transition: opacity 0.24s ease, transform 0.24s ease;
}

.iqec-orchestrator-toast.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.iqec-orchestrator-toast.is-hiding {
	opacity: 0;
	transform: translateY(8px) scale(0.96);
}

.iqec-orchestrator-toast__content {
	flex: 1;
	min-width: 0;
}

.iqec-orchestrator-toast__title {
	display: block;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.8;
	color: #ffffff;
}

.iqec-orchestrator-toast__message {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.92);
	margin-top: 2px;
}

.iqec-orchestrator-toast__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 9px;
	padding: 6px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff !important;
	text-decoration: none;
	font-size: 11px;
	font-weight: 700;
}

.iqec-orchestrator-toast__close {
	width: 26px;
	height: 26px;
	min-width: 26px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;

	font-size: 18px;
	line-height: 1;
	padding: 0;
	cursor: pointer;
}

.iqec-orchestrator-toast--success {
	background: linear-gradient(135deg, #14532d, #16a34a);
}

.iqec-orchestrator-toast--warning {
	background: linear-gradient(135deg, #78350f, #f59e0b);
}

.iqec-orchestrator-toast--achievement {
	background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

.iqec-orchestrator-toast--study {
	background: linear-gradient(135deg, #0f172a, #2563eb);
}

@media (max-width: 600px) {
	.iqec-orchestrator-toast {
		left: 14px;
		right: 14px;
		bottom: 18px;
		width: auto;
		border-radius: 18px;
	}
}