* {
    box-sizing: border-box;
}

/* Layout */
body {
	color: #7B7B7B;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0;
	padding: 0;
    line-height: 1.5;
    overflow-y: scroll;
}

#container {
    margin: 0 auto;
    width: 995px;
    min-height: 100vh;
    box-shadow: -4px 0 4px 0 rgba(0, 0, 0, 0.1), 4px 0 4px 0 rgba(0, 0, 0, 0.1);
}

#header {
    position: relative;
    height: 116px;
    background: linear-gradient(180deg, #063561 0%, #0B3A68 25%, #12416D 50%, #164573 75%, #17426D 100%);
    border-bottom: 6px solid #EC0D75;
}

#header a {
    display: block;
    box-sizing: content-box;
    height: 90px;
    padding: 10px;
}

#header a.bouwradius {
    background: url("../logos/bouwradius.png") center/auto 96px no-repeat padding-box;
    width: 283px;
}

#header a.mkbct {
    background: url("../logos/mkbct.svg") top 5px left 15px/auto 100px no-repeat padding-box, white;
    width: 160px;
}

#header a:first-child {
    float: left;
}

#header a:last-child {
    float: right;
}

#menu {
    float: left;
    width: 185px;
    margin: 0;
    padding: 5px 0 0 10px;
}

#content {
    float: left;
    width: 810px;
    margin: 0;
    padding: 10px;
}

.clearfix {
    clear: both;
}

/* Menu button styling */
ul#menu {
    list-style-type: none;
}

ul#menu li {
    margin: 5px 0;
    border-radius: 5px;
    background-color: #0E3D6B;

    color: white;
    font-size: 12px;
    font-weight: bold;
    font-family: Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
}

ul#menu li a {
    display: block;
    padding: 4px 15px;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

/* Notices */
div.notice, div.error {
    border-radius: 5px;
    margin: 0 20px 20px 0;
    padding: 8px 10px 8px 15px;
}

div.notice {
    background-color: #D9EDF7;
    border: 1px solid #D9EDF7;
}

div.error {
    background-color: #FA5300;
    border: 1px solid #FA5300;
    color: white;
}

/* General */
ul {
    padding-left: 20px;
    margin: 5px 0;
}

/* Links */
#content a {
    color: #124270;
    font-weight: bold;
    text-decoration: none;
}

#content a:hover {
    text-decoration: underline;
}

#content a:after {
   content: " \00BB";
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #124270;
}

h1 {
    margin: 0 0 8px;
}

h2 {
    font-weight: normal;
    font-size: 20px;
    margin: 0 0 6px;
}

h3 {
    font-weight: normal;
    font-size: 16px;
    margin: 0 0 4px;
}

/* Tables */
table.data {
    border-collapse: collapse;
    border: none;
    width: 100%;
    margin: 0 0;
    padding: 0;
}

table.data tr {
    border-collapse: collapse;
    border-bottom: 2px solid white;
}

table.data th {
    background-color: #DCDDE1;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    padding: 3px 8px;
    font-weight: bold;
    text-align: left;
    color: #0F3D6B;
}

table.data td {
    background-color: #F0F1F3;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    padding: 3px 8px;
}

table.data tr.odd td {
    background-color: #F9FAFC;
}

table.data th.action, table.data td.action {
    width: 80px;
}

table.data th a.sort:after {
    content: none;
}

/* Record table */
table.record {
    border-collapse: collapse;
    border: none;
    width: 100%;
    margin: 0 0;
    padding: 0;
}

table.record tr {
    border-collapse: collapse;
    border-bottom: 2px solid white;
}

table.record tr.hidden {
    display: none;
}

table.record th,
table.record td:first-child {
    background-color: #DCDDE1;
    border-bottom: 2px solid white;
    padding: 3px 8px;
    width: 200px;
    font-weight: bold;
    text-align: left;
    color: #0F3D6B;
}

table.record.autowidth th {
    width: auto;
}

table.record td {
    background-color: #F0F1F3;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    padding: 3px 8px;
}

table.record td ul {
    margin: 5px 0;
    padding: 0 0 0 20px;
}

table.record td ul.error li {
    color: red;
}

table.record td:first-child label.required:after {
    content: " *";
}

table.record td input[type='text'],
table.record td input[type='email'],
table.record td input[type='password'],
table.record td textarea,
table.record td select {
    width: 400px;
}

table.record td .date select {
    width: 131px;
}

table.record td button {
    width: 150px;
}

/* Links below tables */
a.excel {
    background: url("../images/excel.png") no-repeat left;
    padding-left: 23px;
    display: inline-block;
    height: 18px;
}

/* Forms */
div.form form div {
    margin-bottom: 20px;
}

div.form form input {
    width: 250px;
}

div.form form input.submit {
    width: 150px;
}

div.form form ul.error li {
    color: red;
}
