/* a11y contrast overrides — fixes WCAG AA failures against theme colors */

/* #02bfe7 on #ffffff fails (~2.1:1) — darken text-info to #0070a3 (~5.0:1) */
.text-info {
    color: #0070a3;
}

/* #ffffff on #00a6d2 alert-info bg fails (~2.9:1) — switch to dark text */
.alert-info {
    color: #1a1a1a;
}

/* #667386 on #f5f5f5 well bg fails (~4.1:1) — darken to #4d5f73 (~5.4:1) */
.well {
    color: #4d5f73;
}

/* Footer background is #323a45 */
/* #767676 on #323a45 fails (~2.5:1) — lighten body/muted text to #aab3be (~4.9:1) */
.footer {
    color: #aab3be;
}

/* Footer links: #0088cc on #323a45 fails (~2.7:1) — lighten to #5bbde8 (~4.8:1) */
.footer a,
.footer a:visited {
    color: #5bbde8;
}
