

body {
	cursor: default;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	min-width: 900px;
}

h1 {
	text-align: center;
}

#controls {
	text-align: center;
	margin-bottom: 1em;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	max-width: 880px;
	margin-left: auto;
	margin-right: auto;
}

#controls .left,
#controls .right {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
}

button {
	margin-left: 5px;
	margin-right: 5px;
}

#btnStartPause {
	width: 60px;
}

label {
	margin-left: 15px;
}

#speed {
	width: 150px;
	margin-left: 10px;
}

#generationCount {
	padding-left: 30px;
}

#generationCount::before {
	content: "Generation: ";
}

#generationTotal::before {
	content: "/";
}

#inputLoadFile {
	display: none;
}

#grid {
	display: table;
	table-layout: fixed;
	border-collapse: collapse;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}

.row {
	display: table-row;
	line-height: 0;
}

.cell {
	display: table-cell;
	width: 10px;
	height: 10px;
	border: solid 1px #ccc;
}

.alive {
	background-color: #000;
}