h3,
h4 {
    text-align: center;
    margin: 20px;
}

/* Table Styling */

table {
    table-layout: fixed;
    width: 100%;
    margin: 10px auto;

    border-collapse: collapse;

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;

    overflow-wrap: break-word; /* for 1440p HiDPI case */
}

tfoot {
  border-top: 1px solid #eeeeee;
}

th,
td {
    padding: 0.6em;

    line-height: 1.5rem; /* Fixes issues with non-Latin scripts */
}

.star-table tr :nth-child(3) {
  text-align: center;
}

tbody tr:nth-child(odd) {
  background-color: #1b1b1b;
}

caption {
  padding: 1em;
  font-style: italic;
  caption-side: bottom;
  letter-spacing: 1px;
}

/* Fixing overflow on mobile */
@media only screen and (max-width: 768px) {
  table {
    width: 200%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 14400px) {
  table {
    width: 100%;
  }
}
