<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Custom styles to fix Apple logo SVG injection issues */

/* SVG injection fix for consistent sizing */
img.svg-inject {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

/* Show SVG after injection completes */
svg.injected-svg,
img.svg-inject.loaded {
  opacity: 1;
}

/* Ensure proper sizing for injected SVGs in navigation */
.nav-link svg.injected-svg {
  width: 20px;
  height: 20px;
}</pre></body></html>