html,
body {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    padding: 8px;
    box-sizing: border-box;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.2;
}

.color-positive {
    color: #008000;
}

.color-negative {
    color: #d90429;
}

.layout-table {
    border-spacing: 0;
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    box-sizing: border-box;
}

.layout-table td,
.layout-table th {
    border: 1px dotted lightgray;
    padding: 8px;
}

.bold-border {
    border-style: solid;
    border-color: #000000;
}

.number-cell {
    text-align: right;
}

@media screen and (max-width: 400px) {
    .highlight-cards td {
        padding: 8px !important;
    }

    .index-list td {
        font-size: 11px !important;
    }

    .number-cell {
        padding-right: 4px !important;
        padding-left: 4px !important;
    }
}

.index-list {
    font-size: 12px;
}

.index-list th {
    border-bottom: 1px solid #000000;
    text-align: center;
    font-weight: bold;
    vertical-align: bottom;
}

h1,
h2,
h3 {
    font-family: Times, 'Times New Roman', serif;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

h1 {
    padding: 24px 16px;
    font-size: 40px;
}

h3 {
    padding: 16px 8px;
    font-size: 24px;
}

.highlight-cards {
    text-align: center;
}

.highlight-cards td {
    padding: 16px;
}

.card-name {
    font-weight: bold;
    font-size: 12px;
}

.card-pct {
    font-size: 24px;
    font-weight: bold;
}

.column-legend {
    font-size: 8px;
}

a {
    color: #0d47a1;
    text-decoration: underline;
}

.signup-form {
    box-sizing: border-box;
    text-align: center;
    padding: 0 0 16px 0;
    margin: 0;
}
.signup-form p {
    margin: 0 0 8px 0;
}
.signup-form input {
    box-sizing: border-box;
    border: 1px solid #000000;
    padding: 8px;
    width: 200px;
    font-size: 14px;
    margin-top: 8px;
}
.signup-form button {
    box-sizing: border-box;
    border: none;
    padding: 8px;
    width: 200px;
    background-color: #0d47a1;
    color: #FFFFFF;
    margin-top: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}