/*
Jakinvite Brand Fix
- Transparent PNG logos are preferred after tools/apply-brand-fix.php runs.
- Fallback JPG logos use the SVG key filter.
*/

.header-logo,
.brand img,
.admin-logo img{
    border:0 !important;
    outline:0 !important;
    box-shadow:none !important;
    background:transparent !important;
    object-fit:contain;
}

.header-logo[src*=".png"],
.brand img[src*="logo-header.png"],
.admin-logo img[src*="logo-admin.png"]{
    filter:none !important;
    clip-path:inset(1px);
}

.header-logo[src*=".jpg"],
.brand img[src*="logo-light.jpg"],
.admin-logo img[src*="logo-dark.jpg"]{
    filter:url(#logo-key) !important;
    clip-path:inset(1px);
}
