/**************************************************
 Variables
**************************************************/
:root {
  --color-link: #0275D8;
  --color-link-hover: #01447E;
  --color-testing: white;
}

/**************************************************
 General
**************************************************/
body {
	vertical-align: middle;
}

h1 {
	text-align: center;
}

a {
	color: var(--color-link);
}

a:hover {
	color: var(--color-link-hover);
}

a {
	outline: none;
	text-decoration: none;
}

a.top-of-page {
	float: right;
}

/**************************************************
 Blocks
**************************************************/
div.block {
	border-top: 1px solid black;
	margin-bottom: 24px;
}

/**************************************************
 Tables
**************************************************/
table {
	border-collapse: collapse;
	border-color: #CCCCCC;
}

tr {
	border-width: 1px;
}

td {
	border-color: #CCCCCC;
	border-style: solid;
	border-width: 1px;
	padding: 5px;
}

.date {
	min-width: 50px;
}

.free {
	color: green;
	text-align: center;
}

.space {
	border-style: none;
	min-width: 10px;
}

.test {
	color: red;
	text-align: center;
}

/**************************************************
 Images
**************************************************/
div img {
	display: block;
	margin: auto;
}

