.janoob-toast-root {
	position: fixed;
	bottom: 1.25rem;
	left: 50%;
	z-index: 2147483000;
	max-width: min(92vw, 22rem);
	padding: 0.65rem 1rem;
	border-radius: 12px;
	background: rgba(15, 23, 42, 0.94);
	color: #f8fafc;
	font-family: 'Cairo', system-ui, sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
	opacity: 0;
	transform: translate(-50%, 12px);
	pointer-events: none;
	transition: opacity 0.22s ease, transform 0.22s ease;
}

.janoob-toast-root.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

.janoob-toast-root.is-ok {
	background: rgba(22, 101, 52, 0.95);
}

.janoob-toast-root.is-error {
	background: rgba(153, 27, 27, 0.95);
}
