caption {
    caption-side: bottom;
    text-align: left;
    font-size: 0.7em;
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border: 1px solid var(--dark-blue);
    width: 100%;
    margin: 50px auto;

}

table thead {
    color: var(--light-blue);
    font-family: gotham-medium, sans-serif;
    transition: background-color .3s ease-in-out,
    color .3s ease-in-out;
}

table.theme-dark thead {
    background-color: var(--dark-blue);
    color: var(--light-blue);
}

table.theme-light thead {
    background-color: white;
    color: var(--dark-blue);
}

table tbody {
    font-family: chevin-light, sans-serif;
}

th, td {
    border: 1px solid black;
    text-align: center;
}

table td {
    padding: 5px;
}

table tbody tr:nth-of-type(even) {
    background-color: var(--dark-pink);
}

table tbody tr:nth-of-type(odd) {
    background-color: var(--light-pink);
}

table.no-border ,
table.no-border tbody td,
table.no-border thead th {
    border: none;
}

