/* Sortierbare Tabelle */
table.Table {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	border-collapse: collapse;
	margin:40px auto;
}

table.Table thead {
    font-weight: bold;
    cursor: default;
}

table.Table th{
	text-align: center;
	background-color: #4CAF50;
	color: white;
	min-width:100px;
}

table.Table tr:nth-child(even){background-color: #f2f2f2;}

table.Table td, table.sortable th {
  border: 1px solid #ddd;
  padding: 8px;
}