* {
	box-sizing: border-box;
}

html {
	height: 100%;
	width: 100%;
}
body{
	height: 100%;
	width: 100%;
	font-family: Arial;
}

#bodyContainer {
	height: 100%;
	width: 100%;
	padding: 10px;
}

#viewerContent {
	height: 100%;
	width: 1310px;
	margin: 0px auto;
}

.header {
	display: flex;
	align-items: stretch;
	padding-bottom: 5px;
}

.header h1 {
	flex: 1 1 auto;
	text-align: center;
}

.emptyBox {
	text-align: center;
	overflow: hidden;
}

.tableBox {
}

#todayBox, #previewBox {
	overflow: hidden;
}

.standard{
	width: 100%; 
	font-weight: bold; 
	color: black; 
	
	border: none;
	text-align: left;
	font-size: 20px;
	border-collapse: separate;
	border-spacing: 0px;
}

.standard tr td {
	font-size: 26px; 
	font-weight: bold;
	padding: 3px 10px;
	height: 70px;
	vertical-align: middle;
}

.standard tr :is(th, td):not(:last-child) {
	border-right: 1px solid #000;
}

.standard thead th {
	font-size: 24px; 
	font-weight: normal;
	height: 40px;
	position: sticky;
	z-index: 2;
	top: 0;
	background-color: #CCC;
}
.today tr.item {
	background-color: #ffffcc;
}
.today tr.item.even {
	background-color: #ffff99;
}
.preview tr.item {
	background-color: #eeeeee;
}
.preview tr.item.even {
	background-color: #dddddd;
}
