﻿body {
    display: flex;
    flex: 1;
    font-family: Verdana, Arial, sans-serif;
    font-size: 14px;
}

.data-dictionary {
    flex-direction: column;
    flex: 0 0 80%;
    margin-left: 50px;
    margin-bottom: 50px;
}

.header > img {
    display: inline-block;
    vert-align: middle;
    margin-right: 10px;
}

.header > div {
    display: inline-block;
}

.header > div span {
    font-size: 1.2em;
    font-weight: bold;
    color: black;
}

.table {
    width: 100%;
    display: block;
    margin: 10px 0 10px 0;
}

.table > span {
    display: block;
    margin: 0px 0px 5px 5px;
    font-size: 1.2em;
}

.table-description > span {
    display: block;
    margin: 0 0 5px 0;
}

.table-description > span:first-of-type {
    font-size: 1.2em;
    font-weight: bold;
}

.table-description > span:last-of-type {
    color: black;
}

.columns {
    margin: 30px 0 30px 0;
}

.columns > span {
    font-size: 1.2em;
    font-weight: bold;
}

table {
    margin-top: 10px;
}

table, tr, td {
    border-collapse: collapse;
    border-spacing: 10px;
}

td {
    padding: 6px 5px 6px 5px;
}

tr:first-of-type {
    background-color: #00A8E0;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f1f1f1; /* This sets the background color for even-numbered rows */
}

.table-index {
    margin-top: 10px;
    margin-bottom: 20px;
}

.last-updated {
    display: block;
    font-family: Verdana, Arial, sans-serif;
    font-size: 12px;
    color: gray;
}

footer {
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #DEE2E4;
}
    footer p {
        font-family: Arial, sans-serif; 
        font-size: 12px;
    }    