/* ── Toast Notifications ── */
.rd-toast-container {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 9999;
	display: flex;
	flex-direction: column-reverse;
	gap: 8px;
}
.rd-toast {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
	animation: rdToastIn 0.25s ease;
	pointer-events: auto;
}
.rd-toast.success {
	background: rgb(26, 150, 108);
}
.rd-toast.error {
	background: #dc3545;
}
.rd-toast.fadeout {
	animation: rdToastOut 0.3s ease forwards;
}
@keyframes rdToastIn {
	from { transform: translateY(12px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}
@keyframes rdToastOut {
	from { transform: translateY(0); opacity: 1; }
	to { transform: translateY(12px); opacity: 0; }
}
