.lsnd-toast-root {
	position: fixed;
	top: 18px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000005;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: min(560px, calc(100vw - 24px));
	pointer-events: none;
}

.lsnd-toast {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	padding: 13px 14px;
	border-radius: 10px;
	border: 1px solid #d8e8d0;
	background: #ffffff;
	box-shadow: 0 8px 18px #00000021;
	color: #1f261d;
	transform: translateY(-8px);
	opacity: 0;
	transition: transform 0.2s ease, opacity 0.2s ease;
	pointer-events: auto;
}

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

.lsnd-toast__content {
	font-size: 15px;
	line-height: 1.4;
	font-weight: 600;
}

.lsnd-toast__close {
	border: 0;
	background: transparent;
	color: #5e5e5e;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.lsnd-toast__close:hover {
	color: #353535;
}

.lsnd-toast--success {
	border-color: #a9d8ad;
	border-left: 5px solid #149c2f;
	background: #e9f9eb;
	color: #0f4f1b;
}

.lsnd-toast--error {
	border-color: #e4a9a9;
	border-left: 5px solid #d93025;
	background: #ffecec;
	color: #67100d;
}

.lsnd-toast--warning {
	border-color: #f3cd87;
	border-left: 5px solid #ea8f00;
	background: #fff3df;
	color: #6a3f00;
}

.lsnd-toast--info {
	border-color: #9fc6f0;
	border-left: 5px solid #2b74cf;
	background: #ebf4ff;
	color: #0e3d72;
}

@media (max-width: 600px) {
	.lsnd-toast-root {
		top: 12px;
		width: calc(100vw - 16px);
	}
}
