/* Styles for Accessibility Features */

/* Contrast Modes */
body.a11y-high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}
body.a11y-high-contrast a {
    color: #FFFF00 !important;
}
body.a11y-negative-contrast {
    filter: invert(100%) hue-rotate(180deg);
}
body.a11y-negative-contrast img,
body.a11y-negative-contrast video,
body.a11y-negative-contrast iframe {
    filter: invert(100%) hue-rotate(180deg);
}
body.a11y-grayscale {
    filter: grayscale(100%);
}

/* Content Modes */
body.a11y-underline-links a {
    text-decoration: underline !important;
}
body.a11y-readable-font, body.a11y-readable-font * {
    font-family: Arial, Helvetica, sans-serif !important;
}
body.a11y-highlight-focus *:focus {
    outline: 3px solid #0056b3 !important;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.4) !important;
    border-radius: 2px;
}