body {
	background: #5B3663;
	color: #ffffff;
	font-size: 18px;
	font-family: "Lato Regular",arial,helvetica,sans-serif;
	margin: 0;
}

a {
	color: #ffd900;
	text-decoration: none;
	font-weight: bold;
}

/* Header */
.menu-bar {
	background: #454545;
	display:table;
	width:100%;
	height:35px;
}

.menu-content {
	display: table-cell;
	vertical-align: middle;
	padding-left: 10px;
}

.menu-search {
	display: table-cell;
	vertical-align: middle;
	width: 250px;
	height:100%;
	padding-right: 10px;
}

form {
	display: table-cell;
	vertical-align: middle;
	height: 100%;
}

input[type="text"] {
	height: 26px;
	padding: 8px;
	border-radius: 20px;
	border-width: 0px;
}
input[type="submit"] {
	height: 26px;
	border-width: 0px;
	border-radius: 20px;
	cursor: pointer;
}

/* Content */
.wrapper {
	margin: 5px;
}

.section-header {
	font-family: "Titillium Web",arial,helvetica,sans-serif;
	letter-spacing: 2px;
	margin-bottom: 10px;
	border-bottom: #ffffff 1px solid;
	font-variant: small-caps;
}

.content-description {
	margin: 30px;
	border: #251C27 1px solid;
	border-radius: 4px;
	background: #36223A;
	padding: 10px;
}

/* List stuff */
.content-list td {
	border: #999999 1px solid;
	border-radius: 4px;
}

/* Game tables */
.gametable {
	width: 80%;
	border: #ffffff 1px solid;
}

.gametable tr th {
	background:#7F6086;
}

.header-name {
	width:375px;
}

.header-status {
	width:150px;
}

.header-version {

}

.gametable tr td {
	background: #5B3663;
}

.status {
	text-align: center;
}

.status-finished {
	background: #B4E657 !important;
}

.status-finished::before {
	content: "✔";
}

.status-unfinished {
	background: #F0C300 !important;
	font-size: 10px;
}

.status-unfinished::before {
	content:"⏲";
}

.status-noplay {
	background: #BA002B !important;
}

.status-noplay::before {
	content: "✕";
}

.status-endless {
	background: #003BB0 !important;
}

.status-endless::before {
	content: "∞";
}

