/**
 * Front público — alertas emergentes del framework de formularios.
 * Mínimo necesario para que $.fn.pop_alert sea visible fuera del dashboard.
 */
#juicy_hub_alerts_root #bottom_alerts_wrapper {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: min(360px, calc(100vw - 40px));
}
#juicy_hub_alerts_root .dashboard_alert {
	padding: 12px 16px;
	border-radius: 6px;
	background: #22333b;
	color: #fff;
	font-size: 14px;
	line-height: 1.35;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.3s, transform 0.3s;
}
#juicy_hub_alerts_root .dashboard_alert.active {
	opacity: 1;
	transform: translateY(0);
}
#juicy_hub_alerts_root .dashboard_alert.success { background: #2f7d46; }
#juicy_hub_alerts_root .dashboard_alert.error { background: #a03434; }
