* {
	font-family: 'verdana';
	margin: 0;
	padding: 0;
	color: #000;
	text-decoration: none;
	border: none;
	box-sizing: border-box;
}

html,
body,
.container {
	width: 100%;
	height: 100%;
}

.window {
	display: block;
    margin: 20px auto;
    box-shadow: 0px 1px 4px rgb(0 0 0 / 50%);
    width: fit-content;
	border-radius: 5px;
	padding-bottom: 5px;
}

.window h2 {
	position: relative;
	background: #555;
	color: #fff;
	text-align: center;
	font-weight: 300;
	font-size: 18px;
	padding: 5px 20px 5px 40px;
    border-radius: 5px 5px 0px 0px;
}

.window h2 a {
    color: #fff;
    margin-right: 20px;
    position: absolute;
    left: 5px;
}

.window h2 a:hover {
    color: #bbb;
}

.logo {
    text-align: center;
	padding: 10px;
}

.logo img {
	max-height: 100px;
}

input {
	display: block;
	padding: 5px;
	font-size: 15px;
	border: 1px solid #8888;
	border-radius: 3px;
	margin: 5px;
	width: calc(100% - 10px);
}

textarea {
	display: block;
	padding: 5px;
	font-size: 15px;
	border: 1px solid #8888;
	border-radius: 3px;
	margin: 5px;
	width: calc(100% - 10px);
	height: 100px;
}

input[type=submit]:hover {
	cursor: pointer;
	background-color: #ddd;
}

.playerrow {
    display: grid;
    grid-template-areas:
        "img naam actief"
        "img locatie actief";
	grid-template-columns: auto 1fr auto;
	border-top: 1px solid #8888;
}

.playerrow:hover {
	background-color: #ddd;
	cursor: pointer;
}

.playerrow .img {
	grid-area: img;
}

.playerrow .img img {
	display: block;
}

.playerrow .naam {
	grid-area: naam;
	padding: 0px 10px;
}

.playerrow .locatie {
	grid-area: locatie;
	padding: 0px 10px;
}

.playerrow .locatie a:hover {
	color: #888;
	text-decoration: underline;
}

.playerrow .actief {
	grid-area: actief;
	position: relative;
	width: 50px;
}
.playerrow .inactief {
	grid-area: actief;
	position: relative;
	width: 50px;
}

.playerrow .actief::after,
.playerrow .inactief::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	border: 1px solid #000;
	border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.playerrow .actief::after {
	background-color: #0f0;
}

.playerrow .inactief::after {
	background-color: #f00;
}

.imagelijst {
	display: grid;
	grid-template-columns: 80px 80px 80px 80px 80px;
	border-top: 1px solid #8888;
}

.imagelijst .blok {
	text-align: center;
	padding: 5px;
}
.imagelijst .blok img {
	width: 64px;
	height: 48px;
	opacity: 0.5;
	image-rendering: pixelated;
}

.imagelijst .blok img:hover{
	opacity: 1;
	cursor: pointer;
}

.functieknoppen {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 5px;
	padding: 5px;
}

.functieknoppen .blok,
.functieknoppen .blokactief {
	text-align: center;
	padding: 5px;
	border: 1px solid #8888;
	vertical-align: middle;
	color: #000;
}

.functieknoppen .blok {
	color: #aaa;
	cursor: not-allowed;
}

.functieknoppen .blokactief {
	cursor: pointer;
	background: #eee;
}
.functieknoppen .blokactief:hover {
	background: #ccc;
}

.preview {
    display: block;
    padding: 10px;
    margin: 0 auto;
} 