/* Senhome Live Toast – frontend styles */

.slt-toast {
	position: fixed;
	z-index: 999998;
	background: #fff;
	border-radius: 14px;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
	border: 1px solid rgba(0, 0, 0, .05);
	max-width: 340px;
	opacity: 0;
	transition: transform .5s cubic-bezier(.4,0,.2,1), opacity .5s;
	pointer-events: none;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Open Sans', sans-serif;
}

/* Vị trí */
.slt-pos-bottom-left  { left: 20px;  bottom: 90px; transform: translateX(-140%); }
.slt-pos-bottom-right { right: 20px; bottom: 90px; transform: translateX(140%); }
.slt-pos-top-left     { left: 20px;  top: 90px;    transform: translateX(-140%); }
.slt-pos-top-right    { right: 20px; top: 90px;    transform: translateX(140%); }

.slt-toast.slt-toast-show {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.slt-toast-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	flex-shrink: 0;
	letter-spacing: .5px;
}

.slt-toast-body {
	flex: 1;
	font-size: 13px;
	line-height: 1.4;
	color: #333;
	min-width: 0;
}

.slt-toast-title strong { color: #111; font-weight: 700; }

.slt-toast-sub {
	color: #666;
	font-size: 12px;
	margin-top: 2px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.slt-toast-check {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

@media (max-width: 480px) {
	.slt-pos-bottom-left,
	.slt-pos-bottom-right {
		left: 10px;
		right: 10px;
		bottom: 80px;
		max-width: none;
	}
	.slt-pos-top-left,
	.slt-pos-top-right {
		left: 10px;
		right: 10px;
		top: 70px;
		max-width: none;
	}
}

/* Admin preview */
.slt-preview .slt-toast {
	position: static;
	max-width: 380px;
	opacity: 1;
	transform: none;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
}
