/*
	This CSS file matches the color scheme from MudBlazor to Bootstrap when utilized for authentication.
	The file remains available at all times for demonstration purposes,
	but it is exclusively employed in the 'App.razor' component when authentication is enabled.
*/


:root {
	--mud-palette-background: rgba(193, 213, 251, 1);
}



.mud-appbar {
	background-image: linear-gradient(180deg, #9fb3dfff -150%, #7992ca 70%);
}

.mud-drawer {
	border-right: 2px solid #ffffff;
}

.AppDrawerHeader {
	background-image: linear-gradient(180deg, #9fb3dfff -150%, #7992ca 70%);
}

.AppDrawerHeaderText {
	color: #ffffff;
}

.mud-drawer-content {
	background-color: rgba(193, 213, 251, 1) ;
}


.mud-nav-item:hover {
	-ms-transform: scale(1.25);
	-webkit-transform: scale(1.25);
	transform: scale(1.25);
	margin-left: 25px;
	transition-duration: .25s;
}

.mud-nav-link-text, .mud-nav-link {
	color: #4466c6 !important;
}
