/* Prepni Progress — toast notifikácie. */

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

.prepni-toast {
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	line-height: 1.4;
	background: #1c1c1c;
	color: #ffffff;
	border: 1px solid rgba(4, 218, 18, 0.35);
	border-radius: 12px;
	padding: 14px 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
	transform: translateX(120%);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.prepni-toast.is-visible {
	transform: translateX(0);
	opacity: 1;
}

.prepni-toast--achievement {
	border-color: #04da12;
	background: linear-gradient(135deg, #1c1c1c, #0f2d10);
	font-weight: 600;
}

.prepni-toast--error {
	border-color: rgba(224, 80, 80, 0.5);
}

@media (prefers-reduced-motion: reduce) {
	.prepni-toast {
		transition: opacity 0.2s ease;
		transform: none;
	}
}

@media (max-width: 480px) {
	#prepni-toast-container {
		left: 12px;
		right: 12px;
		max-width: none;
	}
}
