
/* ── CRITICAL: override the dark body background for this page ── */
body {
    background: #ffffff !important;
    color: #222 !important;
}

/* ── Hero Banner ─────────────────────────────────────────── */
.page-hero-banner {
    position: relative;
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, #183F72 0%, #1e4d8c 60%, #2a5fa8 100%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}
/* dark overlay —  */
.page-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}
.page-hero-banner .banner-title {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    padding: 0 40px;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

/* ── MPD content area ────────────────────────────────────── */
#mpd-row {
    overflow: hidden;
    background: #ffffff;
}
#mpd-row .row {
    overflow: hidden;
    margin-right: 0;
    margin-left: 0;
}
.mpd-padding {
    padding: 20px 0;
}
#mpd-row .container-fluid {
    padding: 0 20px;
    background: #ffffff;
}

/* ── Section Headings ────────────────────────────────────── */
.disclosure-section-heading {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 28px 0 10px;
    padding-bottom: 5px;
    border-bottom: 3px solid darkorange;
    display: inline-block;
    letter-spacing: 0.3px;
    font-family: 'Nunito', sans-serif;
    background: transparent;
}
.disclosure-sub-heading {
    font-size: 15px;
    font-weight: 700;
    color: cornflowerblue;
    margin: 20px 0 8px;
    font-family: 'Nunito', sans-serif;
    background: transparent;
}

/* ── Table wrapper ───────────────────────────────────────── */
.table-responsive-wrap {
    overflow-x: auto;
    background: #ffffff;
}

/* ── Tables ──────────────────────────────────────────────── */
.disclosure-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 6px;
    font-size: 13.5px;
    font-family: 'Nunito', sans-serif;
    background: #ffffff;
}
.disclosure-table th {
    background: #183F72;         
    color: #fff;
    padding: 10px 13px;
    text-align: left;
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border: 1px solid #ffffff;    
}
.disclosure-table td {
    padding: 9px 13px;
    border: 1px solid #f9f9f9;    
    vertical-align: top;
    color: #222;
    background: #ffffff;
}
.disclosure-table tbody tr:nth-child(even) td { background: #e8eaf6; }
.disclosure-table tbody tr:nth-child(odd)  td { background: #ffffff; }

/* ── Buttons ─────────────────────────────────────────────── */
.view-btn {
    display: inline-block;
    color: #183F72;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    padding: 3px 10px;
    border: 1px solid #183F72;
    border-radius: 3px;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    background: #ffffff;
}
.view-btn:hover {
    background: #183F72;
    color: #fff;
    text-decoration: none;
}
/* Greyed out — document not yet uploaded */
.view-btn.empty {
    color: #aaa;
    border-color: #ccc;
    background: #f5f5f5;
    cursor: not-allowed;
}
.view-btn.empty:hover {
    background: #f5f5f5;
    color: #aaa;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .page-hero-banner               { height: 180px; }
    .page-hero-banner .banner-title { font-size: 26px; padding: 0 20px; }
}
@media (max-width: 480px) {
    .page-hero-banner               { height: 140px; }
    .page-hero-banner .banner-title { font-size: 20px; padding: 0 16px; }
    .disclosure-table th,
    .disclosure-table td            { font-size: 12px; padding: 7px 8px; }
}