/* ENP Plugin — custom styles for dynamic blocks that Tailwind utilities don't cover.
   Keep under 10KB (rule R7). All tokens come from code.html tailwind.config. */

.enp-bar-chart { display: flex; align-items: flex-end; gap: 4px; height: 160px; }
.enp-bar-chart rect { fill: var(--enp-primary, #9f3012); transition: fill .2s; }
.enp-bar-chart rect:hover { fill: var(--enp-primary-container, #c04828); }

/* Data tables inside post content reuse Tailwind bg-surface-container-lowest,
   but ensure row hover works without JS. */
.enp-data-table tr:hover td { background: #f5f3f3; }
