body {
    font-family: Arial;
}

table {
    border-spacing: 0px;
    border: 1px solid;
    margin-top: 10px;
}

th, td {
    border: 1px solid;
    text-align: left;
    vertical-align: bottom;
    padding: 5px;
    height: 1px;  // this lets the trigger containers inherit the full height so that small contents form a single column instead of several
}

a:visited {
  color: blue;  // overrides purple links for consistency
}


.tooltip {
  position: relative;
  display: inline;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: max-content;
  max-width: 500px;
  background-color: #555;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 5px 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


.triggersContainer {
    column-count: 3;
    column-gap: 20px;
    column-fill: balance-all;
    height: auto;
}

.triggersHeader {
    column-span: all;
}

.triggersCategory {
    margin-bottom: 40px;
    break-inside: avoid;
}



.foldout {
    -webkit-appearance: initial;
    appearance: initial;
    width: 13px;
    height: 13px;
    border: solid;
    border-width: 1px;
    color: rgb(118, 118, 118);
    border-radius: 2.5px;
    margin-bottom: 0px;
}

.foldout:hover {
    color: rgb(79, 79, 79);
}

.foldout:active {
    color: rgb(141, 141, 141);
}

.foldout:after {
  content: "+";
  position: absolute;
  transform: translate(0%,-25%);
  font-size: 18px;
}

.foldout:checked:after {
    content: "-";
    font-size: 16px;
    transform: translate(50%,-27%) scale(175%, 125%);
    filter: blur(0.1px)
}

.foldout:indeterminate:after {
    content: "+";
}