/* Raydn svc113 Upgrade 6: sitewide icon unification.
   One stroke weight (2), rounded caps/joins, for every outline UI
   icon (24x24 viewBox, stroked with currentColor). Solid-fill
   icons (stars) untouched. Small, safe, layout-neutral: only
   changes stroke rendering, never geometry or box size.
   Load on every page so the icon language is consistent end to end. */
svg[viewBox="0 0 24 24"]:not([fill="currentColor"]):not([fill="currentcolor"]){
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
svg[viewBox="0 0 24 24"]:not([fill="currentColor"]):not([fill="currentcolor"]) [stroke-width]{
  stroke-width: 2;
}
svg[viewBox="0 0 24 24"]:not([fill="currentColor"]):not([fill="currentcolor"]) path,
svg[viewBox="0 0 24 24"]:not([fill="currentColor"]):not([fill="currentcolor"]) line,
svg[viewBox="0 0 24 24"]:not([fill="currentColor"]):not([fill="currentcolor"]) polyline,
svg[viewBox="0 0 24 24"]:not([fill="currentColor"]):not([fill="currentcolor"]) polygon,
svg[viewBox="0 0 24 24"]:not([fill="currentColor"]):not([fill="currentcolor"]) circle,
svg[viewBox="0 0 24 24"]:not([fill="currentColor"]):not([fill="currentcolor"]) rect{
  stroke-linecap: round;
  stroke-linejoin: round;
}
