/* Favicon styles for TECA Canada */
/* Ensure favicon appears properly sized across browsers and platforms */

/* Standard favicon */
link[rel="icon"] {
    display: block;  /* Ensures proper rendering */
}

/* For high-DPI displays */
@media screen and (-webkit-min-device-pixel-ratio: 2),
screen and (min-resolution: 192dpi) {
    link[rel="icon"] {
        /* Make favicon more visible by ensuring it's displayed at proper size */
        transform: scale(1.15); /* Subtle increase in apparent size */
    }
}
