
.error {
	color: #b11;
}

div.hidden {
	display: none;
}

.notify-toast-host {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 1080;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: min(420px, calc(100vw - 2rem));
}

.notify-toast {
	background: #0a54c2;
	color: #fff;
	border-radius: 0.4rem;
	padding: 0.75rem 1rem;
	box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.2);
	opacity: 1;
	transition: opacity 0.35s ease;
}

.notify-toast-hide {
	opacity: 0;
}

.notify-toast-title {
	font-size: 0.8rem;
	opacity: 0.85;
	margin-bottom: 0.25rem;
}

.notify-toast-body {
	white-space: pre-wrap;
	word-break: break-word;
}
