/* Damit die Kartenliste in Spalte 2 scrollbar bleibt */
#list-container {
  max-height: calc(100vh - 150px);
  overflow-y: auto;
}
/* Footer immer am unteren Rand */
body {
  padding-bottom: 60px;
}
footer {
  height: 60px;
  line-height: 60px;
}
/* Cursor für klickbare Elemente */
.module-filter, .badge-clickable, .source-filter {
  cursor: pointer;
}
/* Markierung der vom Nutzer ausgewählten Antwort im Test-/Prüfungsmodus */
.selected {
  background-color: #e9ecef;
}