/* Table styling */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

table td {
    padding: 10px 14px;
    border: 1px solid #ccc;
    text-align: left;
    vertical-align: top;
}

table th {
    font-weight: 700;
    padding: 10px 14px;
    border: 1px dotted #fff;
    text-align: left;
    vertical-align: top;
}

/* Royal: blue header, white body */
table.t-royal th {
    color: #FFF;
    background-color: #003594;
}

table.t-royal td {
    color: #0c0d0e;
    background-color: #FFF;
}

/* Gold: gold cells */
table.t-gold th {
    color: #003594;
    background-color: #FFB81C;
}

table.t-gold td {
    color: #0c0d0e;
    background-color: #FFF;
}

/* Light: sky blue cells */
table.t-light th {
    color: #003594;
    background-color: #54B6FA;
}

table.t-light td {
    color: #0c0d0e;
    background-color: #FFF;
}

/* Bronze */
table.t-bronze th {
    color: #FFF;
    background-color: #7a4820;
}

table.t-bronze td {
    color: #0c0d0e;
    background-color: #FFF;
}