#palta-toast-container {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 380px;
}

.palta-toast {
	padding: 14px 18px;
	border-radius: 12px;
	background: #222;
	color: #fff;
	font-size: 14px;
	line-height: 1.4;
	box-shadow: 0 8px 30px rgba(0,0,0,.15);

	opacity: 0;
	transform: translateY(-10px);

	transition:
		opacity .25s ease,
		transform .25s ease;
}

.palta-toast.show {
	opacity: 1;
	transform: translateY(0);
}

.palta-toast-error {
	background: #dc2626;
}

.palta-toast-success {
	background: #16a34a;
}

.palta-toast-warning {
	background: #d97706;
}

.palta-toast-info {
	background: #2563eb;
}