@charset "utf-8";
/* CSS Document */

/***** Tables  *****/
table {
width:100%;
margin:0 0 1px;
}

table th {
color:#fff;
font-size:13px;
text-align:left;
padding:9px 13px;
}

table td {
border-bottom: 1px solid #e6e6e6;
background-color:#f0f0f0;
color:#2C2C2C;
text-align:left;
padding:9px 13px;
}

table td.highlight {
color:#fff;
font-weight:300;
}

.table-green th {background:#1abc9c;}
.table-blue th {background:#3498db;}
.table-orange th {background:#fd6d52;}
.table-red th {background:#ed4f4f;}
.table-green,
.table-blue,
.table-orange,
.table-red,
.table-grey,
.table-black,
.table-white {
display: table;
width: 100%;
max-width: 100%;
}
.table-grey th{background:#4D4D4D;}
.table-white th{background:#fff; color:#828282 !important; text-shadow:none; border-bottom: 1px solid #e6e6e6; border-top: 1px solid #e6e6e6;}
table tr.even td,table tr.odd td {background-color:#fff; opacity: 0.8;}
table tr td.highlight,.table-black table tr th {background-color:#f9f9f9;}


@media (min-width: 1400px) {
	.container {
		max-width: 1400px;
	}
}

@media screen and (max-width: 760px) {
	table {
		width: 100%;
	}

	.table-green,
	.table-blue,
	.table-orange,
	.table-red,
	.table-grey,
	.table-black,
	.table-white {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
	}

	.table-green tbody,
	.table-blue tbody,
	.table-orange tbody,
	.table-red tbody,
	.table-grey tbody,
	.table-black tbody,
	.table-white tbody {
		display: table;
		width: 100%;
		min-width: 560px;
	}

	.table-green td,
	.table-green th,
	.table-blue td,
	.table-blue th,
	.table-orange td,
	.table-orange th,
	.table-red td,
	.table-red th,
	.table-grey td,
	.table-grey th,
	.table-black td,
	.table-black th,
	.table-white td,
	.table-white th {
		white-space: normal;
		vertical-align: top;
	}
}
.finance-cell {
    vertical-align: bottom; /* pushes content downward */
}

.finance-buttons {
    margin-top: 10px;   /* space below text */
    display: flex;
    gap: 12px;
    flex-wrap: wrap;    /* keeps single row unless screen is small */
}

.info-btn {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    text-decoration: none;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 4px;
    transition: 0.3s ease;
    white-space: nowrap;
}

.info-btn:hover {
    background: #fff;
    color: #000;
}


/* Scroll container */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #ddd;
}

/* Table */
table-v1 {
  border-collapse: collapse;
  width: 100%;
}

/* Cells */
th, td {
  border: 1px solid #fff;
  padding: 10px;
  text-align: center;
  white-space: nowrap;
}

/* 🔵 Dark Blue Header */
th {
  background: #6F8BA4;
  color: #fff;
  font-weight: bold;
}

.section-header {
  background: #6F8BA4;
}

/* Year column */
.year-col {
  text-align: left;
  font-weight: bold;
  background: #f4f6fa;
}

/* PDF icon */
td a img {
  width: 40px;
  height: 40px;
  transition: 0.2s ease;
}

td a:hover img {
  transform: scale(1.1);
}

/* Mobile tweak */
@media (max-width: 600px) {
  th, td {
    padding: 8px;
    font-size: 13px;
  }
}

