﻿.McDesktopView-DesktopRoot {
	display: grid;
	grid-template-columns: 1fr auto;
	background-color: transparent;
	padding: 0;
	height: 100%;
	width: 100%;
}


.McDesktopView-Logo {
	position: relative;
	top: 0;
	right: 0;
	float: right;
}

.McDesktopView-LayoutRoot {
	display: grid;
	/*grid-template-rows: auto 40px 48px 1fr auto;*/
    grid-template-rows: auto 37px 44px 1fr auto;
	background-color: transparent;
	padding: 0;
	/*height: 100%;*/
}

.McDesktopView-LayoutRoot-OfflineMode {
	background: #EF1818;
	padding: 0px;
	display: flex;
	flex-direction: row;
	justify-content: center;
    grid-row: 1;
	/*background: transparent;*/
	/*justify-self: center;*/
	height: 100%
}

.McDesktopView-LayoutRoot-TitleBar {
	display: grid;
	grid-template-columns: 34px auto 1fr auto;
    grid-row: 2;
	/*background-color: rgba(183,72,79,0.38);*/
	/*background-color: #10000000;*/
	padding: 2px 1px 2px 1px;
	/*border: 1px solid rgba(5, 0, 0, 1);*/
    border: 1px solid lightgrey;
	height: 100%;
	width: 100vw;
}

.McDesktopView-LayoutRoot-TitleBar-Desktop {
	display: flex;
	flex-direction: row;
	padding: 0px;
	/*height: 100%*/
}

.McDesktopView-LayoutRoot-TitleBar-Patient {
	display: flex;
	flex-direction: row;
	padding: 0px;
	/*height: 100%;*/
	padding-left: 30px;
	padding-right: 2px;
	overflow:hidden;       /* otherwise buttons on the right may be not visible */
}

.McDesktopView-LayoutRoot-TitleBar-Actions {
	display: flex;
	flex-direction: row;
	padding: 0px;
	/*height: 100%;*/
	margin-left: 2px;
	margin-top: -1px;
    justify-content: right;
	margin-right: 0px;
}

.McDesktopView-LayoutRoot-ContentGrid {
	height: 100%;
    grid-row: 3;
	background-color: #FFFFFF;
	margin-bottom: -4px;
}

.McDesktopView-ConfigArea {
	display: grid;
	grid-template-rows: 1fr auto;
	border: 1px solid rgba(0, 0, 0, 0.8);
	/*height: 100%*/
	background-color: aqua
}


.McDesktopView-PageListContainer-btn {
	background-color: #fafafa; /*  rgba(0, 0, 0, 0.05); */ /*#06000000; rgba(65, 81, 99, 0.21);*/
    width: auto;
	border: 0;
	border-left: solid 1px lightgrey;
	border-right: solid 1px lightgrey;
    color: black;
	opacity: 0.5;
}
.McDesktopView-PageListContainer-btn-selected {
	background-color: #8EB2D1;
	width: auto;
	border: 0;
	border-left: solid 1px lightgrey;
	border-right: solid 1px lightgrey;
	font-weight: bolder;
	color: black;
	opacity: 0.7;
}

.McDesktopView-PageListContainer-btn:focus, .McDesktopView-PageListContainer-btn-selected:focus {
	box-shadow: none;
}

.McDesktopView-PageListContainer-btn:hover:enabled, .McDesktopView-PageListContainer-btn-selected:hover:enabled {
	opacity: 0.9;
}
