*, *:before, *:after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	margin: 0px;
	background-color: #d3c49d;
}



/********* TYPOGRAPHY ***************************************************************************************************/

html {
	font-family: verdana, sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: #000000;
}



/********* LAYOUT *******************************************************************************************************/

.pageContainer {
	display: grid;
	grid-template-columns: 230px auto;
	grid-gap: 30px;
	max-width: 1020px;
	margin: 30px auto;
	padding: 0 20px;
}
.pageHeader {
	grid-column: span 2;
}
.navigation {
	padding: 30px 20px 40px;
	background-color: #fef1bc;
	border-width: 3px;
	border-color: #000000;
	border-style: double;
}
.pageContent {
	padding: 30px 40px 40px;
	background-color: #fef1bc;
	border-width: 3px;
	border-color: #000000;
	border-style: double;
}
.pageFooter {
	grid-column: span 2;
}



/********* HEADER *******************************************************************************************************/

.pageHeader {
	font-size: 26px;
}



/********* NAVIGATION ***************************************************************************************************/

.navigation {

}
.navList {
	list-style: none;
}
.navList li {
	margin-bottom: 10px;
}
.navList li.noMargin {
	margin-bottom: 0;
}
.navLink {
	text-decoration: none;
	font-size: 16px;
	color: inherit;
	transition: color .2s;
}
.navLink.active {
	font-weight: bold;
}
.navLink:hover {
	color: #999fb5;
}



/********* CONTENT ******************************************************************************************************/

.pageContent {
	min-height: 500px;
}



/********* FOOTER *******************************************************************************************************/

.pageFooter {
	padding: 15px;
	font-size: 11px;
	text-align: center;
}
.footerLink {
	text-decoration: underline;
	color: inherit;
	transition: color .2s;
}
.footerLink:hover {
	color: #999fb5;
}



/********* GENERIC ******************************************************************************************************/

h1 {
	margin-bottom: 20px;
	font-size: 22px;
	font-weight: normal;
}
h2 {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: normal;
}
.pageContent > p {
	margin-bottom: 20px;
}

.button {
	display: inline-block;
	padding: 5px 10px;
	background: #000000;
	border: none;
	font-family: verdana, sans-serif;
	font-size: 14px;
	line-height: 22px;
	text-decoration: none;
	color: white;
	cursor: pointer;
	transition: background-color .2s;
}
.button:hover, .button:focus {
	background-color: #292b30;
}

table {
	border: 1px solid #000000;
	border-collapse: separate;
	border-spacing: 2px;
}
td {
	padding: 10px;
	border: 1px;
}
th {
	padding: 5px;
	border: 1px solid #000000;
	background: #d3c49d;
}

.form {

}
.form__row {
	margin-bottom: 10px;
}
.form label {
	display: block;
}
.form input {
	width: 100%;
    margin-top: 2px;
    padding: 5px 10px;
    background-color: #d3c49d;
    border: 1px solid #000;
    font-size: 14px;
    font-weight: 400;
    font-family: verdana, sans-serif;
    color: #000000;
}
.form__buttonContainer {
	margin-top: 20px;
	text-align: right;
}

.feedback {
	position: relative;
	padding: 10px 10px 10px 44px;
	border: 1px solid black;
}
.feedback:before {
	position: absolute;
	left: 10px;
	top: 10px;
	width: 24px;
	height: 24px;
	border: 1px solid black;
	font-size: 14px;
	line-height: 22px;
	font-weight: bold;
	text-align: center;
}
.feedback--confirmation:before {
	content: '✓';
	border-radius: 50%;
}
.feedback--warning:before {
	content: '!';
}
.feedback a {
	color: inherit;
	text-decoration: underline;
}




/********* SCHEDULE *****************************************************************************************************/


.currentSchedule {
	margin-bottom: 30px;
	padding: 10px 15px 20px;
	background: #d3c49d;
}
.currentSchedule__headline {
	margin-bottom: 10px;
}
.currentSchedule__buttonContainer {
	margin-top: 10px;
	text-align: right;
}
.scheduleHistory {
	width: 100%;
}
