/* Heroicons outline, overridden to a 1px stroke.
   Apply .icon to any rendered Heroicons SVG. */

.icon {
  width: 1.5rem;            /* 24px — Heroicons native size */
  height: 1.5rem;
  stroke-width: 1;          /* override Heroicons' 1.5 default */
  stroke: currentColor;     /* inherits text colour */
  fill: none;               /* explicit for outline style */
  flex-shrink: 0;           /* prevents collapse inside flex containers */
}
