@import "colors.css";
/*
.vorstand {
	display: flex;
	margin-top: 1em;
	justify-content: center;
	border-collapse: collapse;
}

.vorstand tr {
	display: table-row;
	text-align: left;
	border-bottom: 1px solid var(--border-color);
}

.vorstand tr:hover {
	background-color: var(--row-hover);
}

.vorstand th, 
.vorstand td {
	display: table-cell;
	padding: 8px 12px;
}

.vorstand th,
.vorstand th:hover {
	background-color: #fff;
}*/

.content .vorstand {
	display: table;
	margin: 2em auto;
	margin-bottom: 1em;
	/*width: 75%;*/
	min-width: 600px;
	border-collapse: collapse;
}

.content .vorstand tr {
	text-align: left;
	border-bottom: 1px solid var(--border-color);
}

.content .vorstand tr:hover {
	background-color: var(--row-hover);
}

.content .vorstand td,
.content .vorstand th  {
	display: table-cell;
	padding: 8px;
}

.content .vorstand a {
	text-decoration: underline;
	color: var(--text-color);
}

.content .vorstand th,
.content .vorstand th:hover {
	cursor: default;
	background-color: #fff;
}