/* START speziell fur Veranstaltungstabelle */
table {
  table-layout: fixed;  width: 100%;  border-collapse: collapse;  border: 3px solid lightgray;
}

thead th:nth-child(1) {
  width: 30%;
}

thead th:nth-child(2) {
  width: 70%;
}

th, td {
  padding: 20px;
}

/* typography */

/*html {
  font-family: 'helvetica neue', helvetica, arial, sans-serif;
}*/

th {
  letter-spacing: 2px;
}

td {
  letter-spacing: 1px;
  white-space:pre-line;
}

tbody td {
  text-align: center;
}

tfoot th {
  text-align: right;
}

/* graphics */

thead, tfoot {
  background-color: gray;
  color: white;
}

thead th, tfoot th, tfoot td {
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
  border: 3px solid lightgray;
  text-shadow: 1px 1px 1px black;
}

tbody tr:nth-child(odd) {
  background-color: white;
}

tbody tr:nth-child(even) {
  background-color: #f6f6f6;
}

table {
  background-color: lightgray;
}
/* ENDE speziell fur Veranstaltungstabelle */
