/* ------------------- GLOBAL RESET ------------------- */
body {
    margin: 0;
    padding: 0;
}

/* ------------------- SKIP LINK ------------------- */
.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    background: #003366;
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: bold;
    border: 2px solid #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.skip-link:hover,
.skip-link:focus {
    opacity: 1;
    outline: 3px solid #ffbf47;
    outline-offset: 2px;
    background: #002244;
}

.skip-link-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

/* ------------------- BANNER REGIONS ------------------- */
.banner-region {
    width: 100%;
}

/* Ensure tables keep exact legacy layout */
.wrapper1 table,
.wrapper2 table,
.wrapper3 table {
    width: 100%;
    border: 0;
    border-collapse: collapse;
}

/* Screen reader list fix */
.header-lists-fix {
    list-style-type: none !important;
}

.header-lists-fix li {
    display: list-item !important;
}

/* ------------------- HIGH CONTRAST MODE ------------------- */
@media (prefers-contrast: high) {
    .skip-link {
        background: #000000;
        border: 2px solid #ffffff;
    }

    .skip-link:hover,
    .skip-link:focus {
        outline: 3px solid #ffff00;
    }
}
