/* Swap top logo */
.app-sidebar-logo-default {
	content: url("/static/custom_seti/seti_logo_white.png") !important;
}


/* Put Seti's color in light mode*/
[data-bs-theme=light] {
	--bs-app-bg-color:#ffffff;
	--bs-app-blank-bg-color:#ffffff;
	--bs-app-header-base-bg-color:#ffffff;
	--bs-app-header-minimize-bg-color:rgba(255, 255, 255, 0.5);
	--bs-app-sidebar-base-bg-color:#003a5d;
	--bs-app-sidebar-base-box-shadow:none
}

/* Put Seti's color in dark mode too*/
[data-bs-theme=dark] {
	--bs-app-bg-color:#0F1014;
	--bs-app-blank-bg-color:#151521;
	--bs-app-header-base-bg-color:#0F1014;
	--bs-app-header-minimize-bg-color:rgba(21, 23, 28, 0.5);
	--bs-app-sidebar-base-bg-color:#003a5d;
	--bs-app-sidebar-base-box-shadow:none;
	--bs-app-sidebar-base-border-end:1px solid #1B1C22
}

/* Make the button white */
.app-sidebar-navs .menu .menu-item .menu-link.active {
	transition:color .2s ease;
	background-color:#dddddd;
	color:#505050
}

/* Set the text color of the button seti colored*/
.app-sidebar-navs .menu .menu-item .menu-link.active .menu-title {
	color:#002a4d
}

/* Hide "Go to WebAdmin" */
a[href="/web/admin/login"] {
	display: none !important;
}
/* Remove the space it left */
a[href="/web/admin/login"] + * {
	margin-left: 0 !important;
}

/* Hide the version number at the bottom */
span.text-gray-700:nth-child(1){
	display: none !important;
}
