/* Quick Dark Mode for Admin UI */
html {
    filter: invert(100%) hue-rotate(180deg);
    background: #fff;
}

/* Re-invert images and media so they look normal */
img, 
video, 
.navbar-brand, 
.v-icon,
.stats-chart {
    filter: invert(100%) hue-rotate(180deg);
}
.header .logo img {
    /* Hide the actual original image pixels */
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 450px; /* Set to your desired width */
    height: 150px;  /* Set to your desired height */
    padding-left: 850px; /* Pushes the original image out of view */
    justify-content: center !important;
    /* Inject your new logo */
    background: url("https://stpaulwv.org/wp-content/uploads/2026/04/StPaulLogo_transp_white_pkb.png") no-repeat;
    background-size: contain;
    
    /* Maintain your specific constraints */
    max-width: 650px;
}