/* ----------------------------------------------------------------------
   SYSTEM RESETS
   ---------------------------------------------------------------------- */

:root {
    --primary-navy: #003366;
    /* DOT Dark Navy */
    --secondary-blue: #0071bc;
    /* FMCSA Primary Blue */
    --slate-gray: #64748b;
    /* Neutral Slate */
    --light-bg: #edf3f8;
    --light-gray: #B4BCC2;
    --border-color: #cbd5e1;
    --text-main: #1f2937; 
    --text-muted: #5f6f86;
    --text-year: #115E59;
    --base-white: #ffffff;
    --front-page-navy: #1a2e4c;
    --bar-background: #e2e8f0;

    --year-accent: #115E59;
    --year-highlight: #e0f8f7;

    --page-width: 8.5in;
    --page-height: 11in;
    --page-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margins */
* {
    margin: 0;
    padding: 0;
}

/* Text rendering */
body {
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--border-color);
    padding: 2rem 0;
    -webkit-text-size-adjust: 100%;
}

/* Media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Inherit fonts for form elements */
input,
button,
textarea,
select {
    font: inherit;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
    outline: 3px solid var(--secondary-blue);
    outline-offset: 2px;
}

/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* Line-wrapping */
p {
    text-wrap: pretty;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
    color: var(--primary-navy);
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 0.25rem;
    letter-spacing: -0.2px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

/* Enable smooth height animations (in reduced-motion-safe context) */
@media (prefers-reduced-motion: no-preference) {
    :root {
        interpolate-size: allow-keywords;
    }
}

/* Remove body background and margins for a clean print */
@media print {
    body {
        background: transparent !important;
        margin: 0;
        padding: 0;
    }

    .page-container {
        break-after: page;
        page-break-after: always; /* Legacy support */
        
        break-inside: avoid;
        page-break-inside: avoid;
        
        margin: 0;
        padding: 0;
        box-shadow: none;
    }

    .page-container:last-of-type {
        break-after: auto;
        page-break-after: auto;
    }
}

main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Headers */
h1 {
    font-size: 1.2rem;
}

h2 {
    font-size: 1rem;
    border-bottom: 2px solid var(--primary-navy);
}

h1 p,
h2 p,
h5 p {
    display: inline;
    margin: 0px;
    vertical-align: baseline;
    font-size:0.7rem;
    font-weight: 400;
}

h3 {
    font-size: 0.9rem;
}

h4 {
    font-size: 0.8rem;
}

h5 {
    font-size: 0.7rem;
    border-bottom: 2px solid var(--primary-navy);
}

h5 p {
    font-size: 0.7rem;
}

h6 {
    font-size: 0.7rem;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

table {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 0.7rem;
    border-collapse: collapse;
    border: none;
}

thead {
    background-color: var(--primary-navy);
    color: var(--base-white);
    border: none;
    text-transform: uppercase;

}

th {
    vertical-align: top;
    text-align: left;
    font-weight: 800;
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.3rem;
}

td {
    padding: 0.5rem 0.3rem;
    vertical-align: middle;
    text-align: right;
    color: inherit;
    border: 1px solid var(--border-color);
}

tbody td:first-child {
    text-align: left;
    font-weight: 700;
}

tbody tr:nth-last-child(2) {
    background-color: var(--year-highlight);
    color: var(--text-year);
}

tbody tr:last-child {
    border-top: 2px solid var(--primary-navy);
    font-weight: 800;
    background-color: var(--light-bg);
}

/* ----------------------------------------------------------------------
   ACCESSABILITY SETTINGS
   ---------------------------------------------------------------------- */

/* Screen Reader Settings */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ----------------------------------------------------------------------
   STANDARD LIBRARY ASSETS
   ---------------------------------------------------------------------- */

.page-container {
    width: var(--page-width);
    height: var(--page-height);
    background: var(--base-white);
    margin: 0 auto 2rem auto;
    padding: 2rem 3rem 5rem 3rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--page-box-shadow);
    position: relative;
    overflow: hidden;
    box-sizing: border-box
}

/* Standard header block for pages 2-8 */
.standard-header {
    border-bottom: 2px solid var(--primary-navy);
    padding-bottom: 0.4rem;
}

h1.standard-header-title {
    font-size: 1.4rem;
    letter-spacing: -0.3px;
    display: block;
}

h1.standard-header-title span {
    color: var(--secondary-blue);
}

h3.standard-header-date-bar {
    background-color: var(--bar-background);
    padding: 0.35rem 0.6rem;
    font-weight: 700;
    font-size: 0.72rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Sections with a dark blue border on the left*/

.narrative-container {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 0.5rem;
}

.narrative-callout {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-navy);
    padding: 0.6rem 0.9rem;
    margin-bottom: 0.75rem;
    margin-top: 0.75rem;
    border-radius: 4px;
}

.narrative-title {
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.narrative-number {
    margin-bottom: 0;
    font-size: 2rem;
}

.narrative-text {
    font-size: 0.8rem;
    color: var(--text-main);
    line-height: 1.4;
}

.inverse-narrative.narrative-callout {
    background-color: var(--primary-navy);
    border-left: 4px solid var(--primary-navy);
}

.inverse-narrative h1,
.inverse-narrative .narrative-title,
.inverse-narrative .narrative-text {
    color: var(--base-white);
}

.highlight-narrative.narrative-callout {
    background-color: var(--base-white);
    border-left: 4px solid var(--primary-navy);
}

.highlight-narrative h1,
.highlight-narrative .narrative-title {
    color: var(--primary-navy);
}

header.section-header {
    margin-bottom: 0.5rem;
}

.section-desc {
    line-height: 1.4;
}

.content-box-padded {
    /*background: var(--base-white);*/
	background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

.content-box-padded.upper-margin {
    margin-top: 2rem;
}

.page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 0.5rem;
}

.page-grid .layout-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-grid .layout-right {
    display: flex;
    flex-direction: column;
}

/*Horizontal Bar Charts*/
.bar-chart-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    list-style: none;
    font-variant-numeric: tabular-nums;
    width: 100%;
}

.bar-chart-row {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.bar-chart-row-label {
    font-weight: 700;
    font-size: 0.68rem;
    color: var(--text-main);
    display: flex;
    flex-shrink: 0;
    text-transform: uppercase;
}

.bar-chart-track-area {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.bar-chart-track-bg {
    background-color: var(--bar-background);
    width: 100%;
    display: block;
    border-radius: 3px;
    position: relative;
}

.bar-chart-fill {
    background-color: var(--secondary-blue);
    height: 100%;
    display: block;
    width: var(--chart-value, 0%);
    border-radius: 3px;
	
}



.bar-chart-track-text {
    font-weight: 700;
    white-space: nowrap;
    top: 0;
    bottom: 0;
    font-size: 0.68rem;
}


/* Footers and Footnotes*/
.page-footer {
    position: absolute;
    bottom: 2rem;
    left: 3rem;
    right: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--slate-gray);
    font-weight: 500;
}

 

.footer-text-box {
    display: flex;
    flex-direction: column;
}

.page-footer  p, .footer-text-box p {
    font-size: 0.7rem;
}

.primary-footnote,
.secondary-footnote {
    padding-top: 0.2rem;
    margin-top: 0.2rem;
}

.secondary-footnote {
    border-top: 1px solid var(--border-color);
    font-weight: 600;
}

/* ----------------------------------------------------------------------
   PAGE ONE ASSETS
   ---------------------------------------------------------------------- */
.page-one-container {
    padding: 0;
}

.cover-header {
    width: 100%;
    background-color: var(--front-page-navy);
    box-sizing: border-box;
}



.cover-body {
    padding: 3rem 3rem 3.5rem 3rem;
    box-sizing: border-box;
}

.cover-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-wrap-lg {
    height: 56px;
    display: flex;
    align-items: center;
}

.logo-wrap-sm {
    height: 48px;
    display: flex;
    align-items: center;
}

.logo-img-lg {
    margin-top: 50px;
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-img-sm {
    margin-top: 40px;
    height: 183%;
    width: auto;
    object-fit: contain;
    display: block;
}

.cover-date-bar {
    background-color: var(--secondary-blue);
    color: var(--base-white);
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 0.65rem 3rem;
    box-sizing: border-box;
    width: 100%;
}

.image-strip {
    display: flex;
    width: 100%;
    height: 115px;
    background-color: var(--base-white);
    border-top: 4px solid var(--base-white);
    border-bottom: 4px solid var(--base-white);
    gap: 4px;
    margin-bottom: 1.75rem;
    box-sizing: border-box;
}

.image-strip-item {
    flex: 1;
}

.image-strip-img {
    width: 100%;
    height: auto;
    margin-top: 0;
    display: block;
    margin-bottom: 0.75rem;
}

main .image-strip-img {
    width: 98%;
}

.main-content-padded {
    padding: 0 3rem;
    box-sizing: border-box;
    width: 100%;
}

.page-one-grid {
    grid-template-columns: 1.15fr 1fr;
    margin-top: 1rem;
}

.page-one-footer {
    bottom: 1.5rem;
    box-sizing: border-box;
    margin: 0;
}

/* Page 1 Left Table Settings */
.status-table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    font-size: 0.8rem;
}

.status-table th {
    color: var(--text-muted);
    background-color: var(--base-white);
    border: none;
}

.status-table tbody td:last-child {
    font-weight: 700;
}

.status-table tbody tr:first-child {
    background-color: var(--primary-navy);
    color: var(--base-white);
}

.status-table tbody tr:nth-child(2) {
    background-color: var(--slate-gray);
    color: var(--base-white);
	text-align: right;
}

.status-table th:nth-child(2) {
    text-align: right;
}
.status-table tbody tr:nth-child(n+3):nth-child(-n+4) {
    font-weight: normal;
    font-size: 0.75rem;
    background-color: var(--base-white);
    color: var(--text-main)
}

.status-table tbody tr:nth-child(n+3):nth-child(-n+4) td:first-child {
    font-weight: normal;
    padding-left: 1rem;
}

.status-table tbody tr:last-child {
    background-color: var(--secondary-blue);
    color: var(--base-white);
    border: 1px solid var(--border-color);
}

.status-table th:first-child,
.status-table td:first-child {
    width: 65%;
}

.status-table th:last-child,
.status-table td:last-child {
    width: 35%;
}

.status-table {
    border-collapse: collapse;
}

.status-table th:nth-child(2),
.status-table td:nth-child(2) {
    text-align: right;
    border-left: none;
}

.status-table th:first-child,
.status-table td:first-child {
    border-right: none;
}
/*Page 1 Right Table Settings*/

.narrative-callout.page-one-right-callout{
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.bar-chart-body.page-one-bc-body {
    padding-top: 0.4rem;
    gap: 0.3rem;
}

.bar-chart-row.page-one-bc-row {
    margin-top: 0.2rem;
    margin-bottom: 0.6rem;
    display: block;
}

.bar-chart-row.page-one-bc-row:last-child {
    margin-bottom: 0;
}

.bar-chart-row-label.page-one-bc-row-label {
    font-size: 0.65rem;
    color: var(--text-main);
    margin-bottom: 0.1rem;
    justify-content: space-between;
}

.page-one-bc-row-sublabel {
    color: var(--text-main);
    font-weight: bold;
    font-size: .8rem;
    text-align: right;
    vertical-align: baseline;
    margin-top:auto;
}

.bar-chart-track-bg.page-one-bc-track {
    border: 1px solid var(--border-color);
    background-color: var(--base-white);
    height: 18px;
}

.bar-chart-fill.page-one-bc-fill {
    background-color: var(--slate-gray);
}

.page-one-bc-row:first-child .page-one-bc-fill {
    background-color: var(--primary-navy);
}

.bar-chart-fill.page-one-bc-fill.focus {
    background-color: var(--secondary-blue);
}

.bar-chart-track-text.page-one-bc-text {
    position: absolute;
    font-size: 0.7rem;
    padding-left: 0.4rem;
    z-index: 2;
    display: flex;
    align-items: center;
    left: var(--chart-value, 0%);
}

.page-one-bc-row:first-child .page-one-bc-text {
    color: var(--base-white);
    left: 0;
}

.page-one-footnotes p {
    margin-bottom: .8rem;
    font-size: 0.72rem;
    line-height: 1.2;
}

/* ----------------------------------------------------------------------
   PAGE TWO ASSETS
   ---------------------------------------------------------------------- */

.bar-chart-body.page-two-bc-body {
    margin-top: 0.3rem;
}

.bar-chart-track-area.page-two-bc-area {
    gap: 0.5rem;
}

.bar-chart-row.page-two-bc-row.top-row {
    border-bottom:1px solid  var(--border-color);
    padding-bottom:0.3rem;
}

.bar-chart-row.page-two-bc-row.bottom-row {
    padding-top:0.3rem;
}

.bar-chart-row-label.page-two-bc-label {
    width: 100px;
    font-size: 0.85rem;
    color: var(--primary-navy);
    line-height: 1.2;
    white-space: wrap;
}

.bar-chart-row-label.page-two-bc-sublabel {
    width: 150px;
    text-align: right;
    font-weight: 600;
    padding-right: 1rem;
    display: block;
    white-space: nowrap;
}

.bar-chart-fill.page-two-bc-fill {
    height: 12px;
}

.bar-chart-body .bar-chart-row:first-child .page-two-bc-fill {
    background-color: var(--slate-gray);
}

.bar-chart-body .bar-chart-row:last-child .page-two-bc-fill {
    background-color: var(--primary-navy);
}


/* ----------------------------------------------------------------------
   PAGE THREE ASSETS
   ---------------------------------------------------------------------- */

.page-three-table {
    font-size: 0.7rem;
}

.page-three-table th:first-child {
    text-align: left;
    width: 23%;
}

.page-three-table th:nth-child(10) {
    width: 12%;
    min-width: 74px;
}

.page-three-table thead th {
    text-align: right;
    font-size: 0.65rem;
    padding: 0.3rem 0.4rem;
}

.page-three-table th:nth-last-child(-n+3) {
    width: 12%;
}

.page-three-table {
    width: 100%;
    border-collapse: collapse;
    border: none;
}

/* Remove the box around every cell */
.page-three-table th,
.page-three-table td {
    border: 0;
}

.page-three-table tbody td {
    border-bottom: 1px solid #d3dde7;
}

.page-three-table tbody td:first-child {
    border-bottom: 1px solid #d3dde7;
}

/* Horizontal separators only */
.page-three-table tbody tr:not(:last-child) td {
    border-bottom: 1px solid #d7e0e8 ;
}

/* Header */
.page-three-table thead th {
    border: none !important;
}

/* Strong divider above "All substances" */
.page-three-table tbody tr.all-substances td {
    border-top: 3px solid #063b70 !important;
}



.page-three-table tr td:nth-last-child(2) {
    font-weight: 700;
    background-color: white;
}

.page-three-table tr td:last-child {
    font-weight: 700;
    background-color: var(--light-bg);
}

.page-three-table tbody tr:last-child td:nth-last-child(2) {
    background-color: var(--light-bg);
}
.page-three-table tbody td:first-child {
    border-bottom: 1px solid #d3dde7;
}
.page-three-table tbody tr td:nth-last-child(4) {
    background-color: var(--year-highlight);
    color: var(--text-year);
    font-weight: 700;
}

.page-three-table tbody th {
    text-align: left;
    font-weight: 700;
    color: var(--primary-navy);
    text-transform: none;
    background-color: var(--base-white);
	border-bottom: 1px solid var(--border-color);
}

.page-three-table tbody tr:last-child th {
    font-weight: 800;
    background-color: var(--light-bg);
}

.page-three-table tbody tr:nth-last-child(2) {
    background-color: var(--base-white);
    color: var(--text-main);
}

.page-three-table tbody tr:nth-last-child(2) th {
    font-style: italic;
}

.page-three-table tbody tr:last-child {
    border-top: 2px solid var(--primary-navy);
    font-weight: 800;
}


/* Page 3 Trend Bars */
.sparkline-container-cell {
    text-align: center;
    vertical-align: middle;
}

.sparkline-track {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1px;
    height: 20px;
    width: 40px;
    margin: 0 auto;
    background: var(--light-bg);
    border-radius: 2px;
    overflow: hidden;
    transform: translateX(8px);
}

.sparkline-bar {
    background: var(--front-page-navy);
    width: 5px;
    display: block;
    height: var(--chart-value, 0%);
}

/* ----------------------------------------------------------------------
   PAGE FOUR/FIVE ASSETS
   ---------------------------------------------------------------------- */

.page-grid.page-five-grid {
    align-items: flex-start;
}


.content-box-padded.page-five-graph-box {
    padding: 0.5rem 0.8rem;
    height: 174px;
}

.content-box-padded.page-five-graph-box .page-five-graph-total-label {
    font-weight: 800;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.page-five-graph-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--primary-navy);
}

.bar-chart-body.page-five-bc-body {
    margin-top: 0.2rem;
    gap: 0.1rem;
    line-height: 1.6;
}

.bar-chart-track-area.page-five-bc-area {
    gap: 0.5rem;
}

.bar-chart-row-label.page-five-bc-sublabel {
    font-weight: 800;
    padding-right: 1rem;
    display: block;
    white-space: nowrap;
    color: var(--text-muted);
    width: 65px;
}

.bar-chart-fill.page-five-bc-fill {
    height: 10px;
}

.page-five-bc-body .bar-chart-row {
    padding: 0rem 0.25rem;
    border-radius: 5px;
}

.page-five-bc-body .bar-chart-row:last-child {
    background-color: var(--year-highlight);
    color: var(--text-year);
}

.page-five-bc-body .bar-chart-row:last-child .page-five-bc-sublabel{
    color: var(--text-year);
}

.page-five-bc-body .bar-chart-row:last-child .page-five-bc-fill{
    background-color: var(--text-year);
}

.page-five-bc-body .bar-chart-fill {
	margin-left: 3px
}

/* ----------------------------------------------------------------------
   PAGE TWO/SIX ASSETS
   ---------------------------------------------------------------------- */

.page-two-table,
.page-six-table {
    margin: 0.5rem 0rem;
    border: none;
}

.page-two-table thead th:last-child,
.page-six-table thead th:last-child {
    width: 70%;
}

.page-two-table th,
.page-six-table th {
    font-size: 0.8rem;
    padding: 0.4rem 0.4rem 0.75rem 0.75rem;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.page-two-table tbody th,
.page-six-table tbody th {
    border-right: 1px solid var(--border-color);
}

.page-two-table td,
.page-six-table td {
    font-weight: 600;
    padding: 0.4rem 0.4rem 0.75rem 0.75rem;
    border-left: none;
    border-right: none;
    border-bottom: none;
    font-size: 0.8rem;
}

.page-two-table .bar-chart-track-area,
.page-six-table .bar-chart-track-area {
    height: 12px;
}

.page-two-table tbody tr:last-child,
.page-six-table tbody tr:last-child {
    background-color: var(--year-highlight);
    color: var(--text-year);
    border-top: 1px solid var(--border-color);
}

.page-two-table tbody tr:last-child .bar-chart-fill,
.page-six-table tbody tr:last-child .bar-chart-fill {
    background-color: var(--year-accent);
}

.page-two-table tr:nth-last-child(2),
.page-six-table tr:nth-last-child(2) {
    background-color: var(--base-white);
    color: var(--text-main);
}

.page-grid.page-six-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0;
    align-items: start;
}

.page-six-narrative {
    margin-top: 0;
}

/* ----------------------------------------------------------------------
   PAGE SEVEN ASSETS
   ---------------------------------------------------------------------- */

.page-seven-table {
    margin-bottom: 1rem;
    table-layout: fixed;
}

.page-seven-table thead th{
    border-bottom: 5px solid var(--primary-navy);
    background-color: var(--base-white);
    color: var(--primary-navy);
}

.page-seven-table thead th:last-child {
    width: 15%;
}

.page-seven-table thead th:first-child {
    width: 10%;
}

.page-seven-table th {
    font-size: 0.8rem;
    padding: 0.5rem 0.5rem 0.75rem 0.75rem;
    width: 25%;
    border: 0px;
}

.page-seven-table td {
    font-weight: 700;
    padding: 0.5rem 0.5rem 0.75rem 0.75rem;
    border: 0px;
}

.page-seven-table .bar-chart-track-area {
    height: 10px;
    background-color: var(--bar-background);
}

.page-seven-table tbody tr:last-child .bar-chart-track-area{
    background-color: var(--base-white);
}

.page-seven-table tbody tr:last-child{
    background-color: var(--year-highlight);
    color: var(--text-year);
    border-top: 1px solid var(--border-color);
}

.page-seven-table tr:nth-last-child(2) {
    background-color: var(--base-white);
    color: var(--text-main);
}

.bar-chart-row-label.page-seven-bc-row-label {
    font-size: 0.75rem;
    color: inherit;
    margin-bottom: 0.1rem;
}

.page-seven-bc-row-sublabel {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.65rem;
    margin-left: 0.3rem;
}

.page-seven-table tr td:nth-child(4) {
    color: var(--secondary-blue);
}

.page-seven-table tr td:nth-child(3) {
    color: var(--text-muted);
}

.page-seven-table tr td:nth-child(3) .bar-chart-fill {
    background-color: var(--slate-gray);
}

.page-seven-table tr td:nth-child(2) .bar-chart-fill {
    background-color: var(--primary-navy);
}

/* ----------------------------------------------------------------------
   APPENDIX ASSETS
   ---------------------------------------------------------------------- */

.appendix-table-container {
    margin: .75rem 0;
}

.appendix-table-container thead th:first-child {
    width: 12%;
}

.small-appendix-table thead th {
    width: 25%;
}

.small-appendix-table thead tr th:last-child {
    background-color: var(--secondary-blue);
}

.small-appendix-table tbody tr:first-child:nth-child(-n-6) td:last-child {
    background-color: var(--light-bg);
}

/* new CSS from Liz */
.page-three-table .fa-arrow-down,
.page-three-table .fa-arrow-up { 
    margin-left: 4px;
	font-size: 1.2em;
    font-weight: 900;
}
