/* Fix for blurred images - remove any blur filters */
img {
    filter: none !important;
    -webkit-filter: none !important;
}

/* Alternative approach - ensure images are sharp */
img {
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: -moz-crisp-edges !important;
    image-rendering: pixelated !important;
    image-rendering: crisp-edges !important;
}

/* Specific fix for logo image */
img[src*="cm_logo.png"] {
    filter: none !important;
    -webkit-filter: none !important;
    image-rendering: auto !important;
}
