/*
div {
	outline: 5px dotted grey;
}
*/

.parent {
	display: grid;
	grid-template-columns: 60px 1fr;
	grid-template-rows: 60px 1fr 60px;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.dl-logo {
	grid-area: 1 / 1 / 2 / 2;
	padding: 5px;
	background-color: lightgray;
}

.dl-title {
	grid-area: 1 / 2 / 2 / 3;
	font-family: "Titillium Web", sans-serif;
	font-weight: 200;
	font-style: normal;
	font-size: 40px;
	padding-left: 10px;
	background-color: lightgray;
	text-align: left;
}

.dl-body {
	grid-area: 2 / 1 / 3 / 3;
	font-family: "Titillium Web", sans-serif;
	padding: 10px;
}

.dl-footer {
	grid-area: 3 / 1 / 4 / 3;
	font-family: "Titillium Web", sans-serif;
	background-color: #5f6062;
	color: white;
	padding: 10px;
	font-size: small;
}

.button {
	border: none;
	border-radius: 8px;
	padding: 5px;
	background-color: #00628f;
	color: white;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	width: 100px;
}

.button:disabled,
.button[disabled] {
	border: none;
	border-radius: 8px;
	padding: 5px;
	background-color: gray;
	color: black;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	width: 100px;
}

.widebutton {
	border: none;
	border-radius: 8px;
	padding: 5px;
	background-color: #00628f;
	color: white;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	width: 150px;
}

.widebutton:disabled,
.widebutton[disabled] {
	border: none;
	border-radius: 8px;
	padding: 5px;
	background-color: gray;
	color: black;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	width: 150px;
}

th, td {
	padding: 5px;
}

thead tr {
	background-color: #000000;
	color: #fff;
}

tbody tr:nth-child(odd) {
	background-color: silver;
	color: black;
}

tbody tr:nth-child(even) {
	background-color: gray;
	color: black;
}