/* Logo styles with enhanced rendering for crisp display */
.logo-icon {
    background-color: transparent;
    color: #fff;
    width: 230px; /* Adjusted for better proportion */
    height: 50px; /* Fixed height to maintain aspect ratio */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    overflow: visible; /* Allow logo to overflow if needed */
}

.logo-icon img {
    width: auto;
    height: 40px; /* Fixed height for consistent rendering */
    border-radius: 6px;
    object-fit: scale-down; /* Better than contain for logos */
    padding: 0; /* Removed padding that could cause blur */
    image-rendering: -webkit-optimize-contrast; /* Improves sharpness in Chrome/Safari */
    image-rendering: crisp-edges; /* Improves sharpness in Firefox */
    -ms-interpolation-mode: nearest-neighbor; /* Improves sharpness in IE */
    transform: translateZ(0); /* Force GPU acceleration */
    backface-visibility: hidden; /* Prevent blurring during animations */
    will-change: transform; /* Hint to browser for optimization */
}
