.toast {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #49abaa;
	color: white;
	padding: 12px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: opacity 0.3s ease;
	z-index: 1000;
}
.toast.hidden {
	opacity: 0;
	pointer-events: none;
}
.toast.show {
	opacity: 1;
}
.alert {
	display: none;
}
.toast.success {
	background-color: #49abaa;
}
.toast.error {
	background-color: #e74c3c;
}
.toast.warning {
	background-color: #f39c12;
}
