body {
	font-size: 16px;
	font-family: Segoe UI;
	width: 240px;
	margin: 0;
}

header, footer {
	display: -webkit-flex;
	display: flex;
	font-size: 14px;
}

header {
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding: 0 6px 2px;
	background-color: #555;
	color: #fff;
}

footer {
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-evenly;
	justify-content: space-evenly;
	background-color: #eee;
	color: #666;
}

footer span {padding-bottom: 2px}

ul {
	list-style: none;
	padding-inline-start: 20px;
	margin-top: 0;
	margin-bottom: 0;
}

a {
	color: #fff;
	text-decoration: none;
}

a:hover {color: #ddd}

#options {
	margin-left: -20px;
	padding: 6px 12px;
}

.option {
	display: block;
	position: relative;
	padding-left: 22px;
	margin-bottom: 2px;
	cursor: pointer;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.option input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.checkmark {
	position: absolute;
    top: 6.5px;
    left: 0;
    height: 7px;
    width: 7px;
	border: 2px solid #ddd;
}

.checkmark:after {
	content: "";
	height: 7px;
	width: 7px;
	display: none;
	background-color: #999;
}

input:checked ~ .checkmark:after {display: block}

#reload {
	cursor: pointer;
	fill: #888;
}

#reload:hover {
	fill: #555;
}
