#toast-container {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
}

.toast {
	background-color: #333;
	color: white;
	padding: 12px 20px;
	border-radius: 8px;
	margin-top: 10px;
	opacity: 0.95;
	font-family: 'Lato', sans-serif;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	animation: slideIn 0.4s ease;
}

@keyframes slideIn {
	from {
		transform: translateX(100%);
		opacity: 0;
	}

	to {
		transform: translateX(0%);
		opacity: 0.95;
	}
}