/* 1. Hide the default image that Keycloak's React app tries to inject */
.pf-v5-c-masthead__brand img {
    display: none !important;
}

/* 2. Apply your custom PNG to the container link */
.pf-v5-c-masthead__brand {
    background-image: url('../img/myfdweb.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    
    /* Adjust these dimensions to fit your specific PNG's aspect ratio */
    height: 40px; 
    width: 200px; 
    
    display: block;
}
