body {
	
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
}

#appContainer {
	
	width: 1200px;
	height: 100%;
	margin: 0 auto;
	min-height: 600px;
	flex-flow: column;
	display: flex;
	background-color: rgba(255, 255, 255, 1);
	
}

#appContainer > div:nth-child(2) {
	
	background-color: #eaeaea;
	flex: 1 1 auto;
	width: 100%;
	position: relative;

}

#contentContainer {
	
	position: absolute;
	background-color: white;
	left: 10px;
	top: 10px;
	right: 10px;
	bottom: 10px;
	border-radius: 5px;
	
}

#callbackTable {
	
	position: absolute;
	margin: 0 auto;
	left: 50px;
	right: 50px;
	top: 20px;
	bottom: 20px;
/* 	background-color: purple; */
	border: solid 1px #3c3c3c;
	display: flex;
	flex-flow: column;
	
}

#callbackTable > div:nth-child(1) {
	
	border-bottom: solid 1px #e7e7e7;
	background-color: #3c3c3c;
	color: #dddddd;
}

.callbackTableRow {
	
	width: 100%;
	flex-flow: row;
	display: flex;
	flex: 0 0 30px;
	color: black;
	border-bottom: solid 1px black;
	
	height: 40px;
}

/*
.callbackTableRow:nth-child(odd) {
	
	background-color: white;
	
}

.callbackTableRow:nth-child(even) {
	
	background-color: #dfdfdf;
	
}
*/

.callbackTableRow:not(:nth-child(1)) {
	
	border-bottom: solid 1px #999999;
/* 	flex: 0 0 40px; */
}

#callbackTableData {
	
	flex: 1 1 auto;
/* 	background-color: aqua; */
	overflow: scroll;
	
}

.callbackTableRowCell:nth-child(1) {
	
	flex: 0 0 15%;
	
}

.callbackTableRowCell:nth-child(2) {
	
	flex: 0 0 15%;
	
}

.callbackTableRowCell:nth-child(3) {
	
	flex: 0 0 15%;
	
}

.callbackTableRowCell:nth-child(4) {
	
	flex: 0 0 10%;
	
}

.callbackTableRowCell:nth-child(5) {
	
	flex: 0 0 15%;
	
}

.callbackTableRowCell:nth-child(6) {
	
	flex: 0 0 15%;
	
}

.callbackTableRowCell:nth-child(7) {
	
	flex: 0 0 15%;
	
}

.callbackTableRowCell {
	text-align: center;
	font-size: 15px;
	line-height: 40px;
	flex: 1 1 auto;
	position: relative;
}

.callbackTableRowCell:not(:last-child) {
	
	border-right: solid 1px black;
	
}

.callbackTableRowGood {
	
	background-color: rgba(0, 255, 0, 0.40);
}

.callbackTableRowBad {
	
	background-color: rgba(255, 0, 0, 0.40);
}

.callbackTableRowOK {
	
	background-color: rgba(255, 255, 0, 0.35);
}