/* Allgemeine Tabellenformatierung */
.tableElmi {
  width: 100%;
  border-collapse: collapse;
}

.tableElmi tr:first-child {
    font-weight: 900;
}

/* Header-Zeilen */
.thElmi {
  background-color: #f0f0f0;
  border-bottom: 2px solid #ccc;
  padding: 8px;
}

/* Datenzeilen */
.tdElmi{
  overflow: hidden;
  font-family: sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: start;
  line-height: 15.96px;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
  flex: 0 0 auto;
}

/*Ueberschriften in Tabellen*/
.titleElmi{
    overflow: hidden;
    font-family: sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-align: start;
    line-height: 15.96px;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
    flex: 0 0 auto;
    cursor: pointer;
}

.trElmi {
  cursor: pointer;
  border-spacing: 0;
  border: 1px solid rgba(0, 0, 0, 0)
}

.trElmi:hover {
  border-bottom: 1px solid white;
}
