/**
 * Accessibility Enhancement Styles - ne-gov-covered-farm-vehicle
 *
 * WCAG 2.2 Level A/AA compliance fixes
 * Target: 1.4.3 Contrast (Minimum) Level AA - 4.5:1 ratio for normal text
 */

/* Fix: Add Another Driver button (btn-light) insufficient contrast
 * Arc finding: ARC::insufficientNormalTextContrast
 * Forces near-black text on light button background (>7:1 ratio)
 */
#addDriver.btn-light {
    color: #212529 !important;
    border-color: #adb5bd !important;
}

/* Fix: Nebraska Interactive footer link - WCAG 1.4.1 Use of Color (Level A)
 * Link must be distinguishable from surrounding text by means other than color alone.
 * Adding underline ensures sighted users can identify the link without relying on color.
 */
.ni-mention a {
    text-decoration: underline !important;
}
