dfn {
  cursor: help;
  position: relative;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  font-style: inherit;
}

abbr {
  display: none;
  position: absolute;
  opacity: 0;
  width: max-content;
  max-width: 8rem;
  font-size: 0.8rem;
  top: -2.5rem;
  left: 0;
  background-color: var(--col-foreground);
  border-radius: 0.3rem;
  padding: 1rem;
  
  transition-property: opacity;
  transition-duration: 1s;
  transition-delay: 1s;
}

dfn:hover abbr {
  display: block;

  opacity: 1;
}

table {
  border-collapse: collapse;
}

th, td {
  text-align: start;
  text-wrap: balance;
  padding: 0.3rem;
  min-width: 3.5rem;
}

tr:nth-child(2n+1) {
  background-color: var(--col-foreground-50);
}

tr:nth-child(2n) {
  background-color: var(--col-background-50);
}

tr:nth-child(1) > th {
  &::before {
    content: '[';
  }
  &::after {
    content: ']';
  }
}

td:nth-child(1) {
  width: 15%;
}

td:nth-child(2) {
  width: 22%;
}

td:nth-child(3) {
  width: max-content;
}

td:nth-child(4) {
  width: 10%;
}
