/**
 * Notified - Public CSS
 * Minimal stylesheet; popup is styled inline via JS settings.
 */

/* Success toast animation helper class (optional) */
.notified-toast {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: #111;
	color: #fff;
	padding: 12px 24px;
	border-radius: 100px;
	font: 600 14px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	box-shadow: 0 4px 20px rgba(0,0,0,.35);
	opacity: 0;
	transition: all .4s cubic-bezier(.34,1.56,.64,1);
	z-index: 2147483647;
	pointer-events: none;
	white-space: nowrap;
}
.notified-toast.is-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

/* Prevent scrollbar shift when welcome overlay is open */
body.notified-welcome-open {
	overflow: hidden;
}
