/* Custom styling for favicon to make it appear zoomed in and better centered */
link[rel="icon"] {
  transform: scale(1.5) !important;
  transform-origin: center !important;
}

/* Force favicon to be loaded with specific dimensions and cropping */
@media screen {
  html head link[rel="icon"] {
    width: 32px !important;
    height: 32px !important;
    object-fit: cover !important;
    object-position: center 40% !important;
  }
}
