#app {
	font-family: Avenir, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-align: center;
	color: #2c3e50;
	font-size: 12px;
}
body {
	background: #fff;
}
button.paused {
	background: yellow;
}
h3 {
	margin: 40px 0 0;
}
ul {
	list-style-type: none;
	padding: 0;
}
li {
	display: inline-block;
	margin: 0 10px;
}
a {
	color: #42b983;
}
.wrapper {
	width: 95%;
	margin: 20px auto;
}
.table-wrapper {
	display: block;
	max-height: 250px;
	overflow-y: scroll;
	border: 2px solid black;
	margin: 10px 0;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}
.table-wrapper::-webkit-scrollbar {
	display: none;
}
.left-col, .right-col {
	display: inline-block;
	margin: 0;
	padding: 0;
	vertical-align: top;
}
.left-col {
	width: 48%;
}
.right-col {
	width: 48%;
}
table {
	width: 100%;
}
table tbody tr:first-child {
	position: sticky;
	top: 0;
}
table, tr, th, td {
	border-collapse: collapse;
	border: 1px #333 solid;
}
tr td h2 {
	margin: 0;
	background: #fff;
}
tr.header {
	background: #333;
	color: #fff;
}
tr.header th {
	border-right: #888 1px solid;
}
tr.header th:last-child {
	border-right: #000 1px solid;
}
.sale, .pass {
	background-color: lightgreen;
}
.hike, .fail {
	background-color: lightpink;
}
.leader {
	background-color: green;
	color: white;
	font-weight: bold;
}
ul li {
	display: block;
}
ul li ul li {
	list-style-type: disc;
}