:root {
	font-size: 16px;
}
body {
	padding-top: 4rem;
	text-align: center;
	background-color: #fcf;
	color: #030;
}
.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
	background-color: #fff;
	border-bottom: 2px solid #666;
}
.table {
	margin: auto;
	background-color: #fff;
	color: #000;
	border-collapse: collapse;
}
.table--row.park-empty {
	background-color: rgba(51, 255, 51, .75);
	transition: background-color .25s ease-out;
}
.table--row.park-empty:hover,
.table--row.park-empty:active,
.table--row.park-empty:focus-within {
	background-color: rgba(51, 255, 51, 1);
}
.table--row.park-quiet {
	background-color: rgba(153, 255, 51, .75);
	transition: background-color .25s ease-out;
}
.table--row.park-quiet:hover,
.table--row.park-quiet:active,
.table--row.park-quiet:focus-within {
	background-color: rgba(153, 255, 51, 1);
}
.table--row.park-busy {
	background-color: rgba(255, 255, 51, .75);
	transition: background-color .25s ease-out;
}
.table--row.park-busy:hover,
.table--row.park-busy:active,
.table--row.park-busy:focus-within {
	background-color: rgba(255, 255, 51, 1);
}
.table--row.park-packed {
	background-color: rgba(255, 153, 51, .75);
	transition: background-color .25s ease-out;
}
.table--row.park-packed:hover,
.table--row.park-packed:active,
.table--row.park-packed:focus-within {
	background-color: rgba(255, 153, 51, 1);
}
.table--row.park-full {
	background-color: rgba(255, 51, 51, .75);
	transition: background-color .25s ease-out;
}
.table--row.park-full:hover,
.table--row.park-full:active,
.table--row.park-full:focus-within {
	background-color: rgba(255, 51, 51, 1);
}
.table--row--cell {
	padding: .25rem;
	border: 2px solid #000;
	outline: 2px solid rgba(0, 0, 255, 0);
	transition: outline .25s ease-out;
}
.table--row--cell:hover,
.table--row--cell:active,
.table--row--cell:focus-within {
	outline: 2px solid rgba(0, 0, 255, 1);
}
.table--row--cell.table--row--cell-center {
	text-align: center;
}
.table--row--cell.table--row--cell-active:after {
	content: '🔼';
	opacity: .5;
	transition: opacity .25s ease-out;
}
.table--row--cell.table--row--cell-active:hover:after,
.table--row--cell.table--row--cell-active:active:after,
.table--row--cell.table--row--cell-active:focus-within:after {
	opacity: .75;
}
.section {
	padding-top: 1rem;
}
.flex-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
}
.title {
	font-size: 1rem;
	margin: .5rem;
}
.paragraph {
	font-size: 1rem;
}
.paragraph--button {
	padding: .5rem;
	background-color: #fff;
	border: 2px solid #000;
	outline: 2px solid rgba(0, 0, 255, 0);
	transition: outline .25s ease-out;
}
.paragraph--button:hover,
.paragraph--button:active,
.paragraph--button:focus-within {
	outline: 2px solid rgba(0, 0, 255, 1);
}
.link {
	text-decoration: none;
	color: #00f;
}
.js--sort,
.js--filter {
	cursor: pointer;
}
