.md-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  overflow: hidden;
}
.md-table th.md-numeric,
.md-table td.md-numeric {
  text-align: right;
}
.md-table > thead > tr > th {
  text-align: left;
  height: 56px;
  padding: 14px 32px 14px 24px;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--md-on-surface-medium);
}
.md-table > tbody > tr > td {
  height: 48px;
  position: relative;
  font-size: 13px;
  line-height: 18px;
  padding: 6px 32px 6px 24px;
  border-top: 1px solid;
  border-top-color: var(--md-outline);
}
.md-table > tbody > tr > td > a {
  cursor: pointer;
}
.md-table > tbody > tr > td > a:hover {
  text-decoration: none;
}
.md-table > tbody > tr > td > a + a {
  margin-left: 6px;
}
.md-table > tbody > tr:hover > td {
  background-color: var(--md-outline);
}