/* Additional custom styles for TMS Cortex theme editor */
/* This file is loaded in both front-end and editor via functions.php */

/* ── Device Network Minimal ─────────────────────────────── */

/* Hub pulse rings */
.dn-pulse-ring {
	transform-origin: 50px 30px;
	animation: dn-hub-pulse 3s ease-out infinite;
}
.dn-pulse-ring--inner {
	animation-delay: 0.8s;
}

@keyframes dn-hub-pulse {
	0%   { transform: scale(1);   opacity: 0.6; }
	70%  { transform: scale(1.6); opacity: 0; }
	100% { transform: scale(1.6); opacity: 0; }
}

/* Node active-pulse ring */
.dn-node-pulse--active {
	animation: dn-node-active 1s ease-out infinite;
}

@keyframes dn-node-active {
	0%   { r: 2.4; opacity: 0.8; }
	100% { r: 6.7; opacity: 0; }
}
