h1 {
  font-family: sans-serif, Arial, Helvetica ;
}

h2 {
  font-family: sans-serif, Arial, Helvetica ;
}

p {
  font-family: sans-serif, Arial, Helvetica ;
}

li {
  font-family: sans-serif, Arial, Helvetica ;
}

i {
  font-style: normal ;
}

.rotated-header {
  font-family: sans-serif, Arial, Helvetica ;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  min-width: 400px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.rotated-header th {
  height: 140px;
  vertical-align: bottom;
  text-align: left;
  line-height: 1;
  background-color: #009879;
  color: #ffffff;;
  font-weight: bold;
  padding: 5px 2px;
}

.rotated-header-container {
  width: 40px;
}

.rotated-header-content {
  width: 200px;
  transform-origin: bottom left;
  transform: translateX(30px) rotate(-45deg);
}

.rotated-header tbody tr {
  border-bottom: 1px solid #dddddd;
}

.rotated-header tbody tr:last-of-type {
  border-bottom: 2px solid #009879;
}

.rotated-header td {
  padding: 5px 2px;
  background-clip: content-box;
  text-align: center;
  white-space: pre;
}

.rotated-header td:nth-child(1) {
  text-align: right;
}

.rotated-header td:nth-child(3) {
  text-align: left;
}

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

.tooltip .tooltiptext {
  font-family: sans-serif, Arial, Helvetica ;
  font-size: 0.9em;
  visibility: hidden;
  width: max-content;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 5px;
  position: absolute;
  z-index: 1;
  top: -4px;
  left: 175%;
}

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