/*******************************************
 * Launchpad Toast Notification Component
 * *****************************************
 * Base styles for the reusable toast component (public/js/toast.js).
 * Intended to be copied into the cloud base stylesheet; kept as a
 * standalone file here so it can be reviewed/tested independently.
 *
 * @since   1.7.67
 *******************************************/

.lp-toast-container {
	position: fixed;
	z-index: 100000;
	display: flex;
	flex-direction: column;
	gap: 10px;
	pointer-events: none;
	max-width: calc(100vw - 40px);
}

.lp-toast-container--bottom-left {
	left: 20px;
	bottom: 20px;
	align-items: flex-start;
}

.lp-toast {
	pointer-events: auto;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	max-width: 360px;
	padding: 14px 18px;
	border-radius: 6px;
	font-size: 14px;
	line-height: 1.4;
	color: #fff;
	background: #2b2b2b;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.lp-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}
