/* 1. HIDE THE FLOPPY DISK EVERYWHERE */
header img[src*="logo.svg"],
.logo img[src*="logo.svg"],
#login img[src*="logo.svg"] {
    display: none !important;
}

/* 2. SIDEBAR LOGO (Internal Dashboard) */
.logo, header {
    background-image: url('/static/img/logo.png') !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 40px;
    min-width: 40px;
}

/* 3. LOGIN PAGE LOGO (The Front Door) */
/* This targets the logo container on the login screen specifically */
#login .logo {
    background-image: url('/static/img/logo.png') !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 120px; /* This creates the space for your photo */
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

/* Centering the "MacHouse Fileserver" text under your logo */
#login h1 {
    text-align: center;
}