/* Logo theme switching */

/* Navbar / sidebar logo: show correct variant based on theme */
.logo-light { display: inline-block; }
.logo-dark  { display: none; }

html[data-bs-theme="dark"] .logo-light { display: none; }
html[data-bs-theme="dark"] .logo-dark  { display: inline-block; }

#logoContainer {
position: relative;
margin-top: 40px;
}

html[data-bs-theme="dark"] #logoContainer img {
display: none;
}

html[data-bs-theme="dark"] #logoContainer {
background-image: url('/assets/img/logo-dark-mode.png');
background-size: auto 75px;
background-repeat: no-repeat;
background-position: center;
height: 75px;
width: 100%;
margin-top: 40px;
}
