/**
 * Accessibility contrast fixes for getcandid.com overlay/widget.
 * The external candid script injects styles (sometimes with !important) that fail
 * WCAG AA (4.5:1). Higher-specificity selectors ensure our overrides win even when
 * the candid JS loads its stylesheet after ours.
 */

/* Numbered product hotspot markers — white circle bg, must have dark text */
body a.cm.candid-marker {
    color: #1a1a1a !important;
    background-color: #fff !important;
}

/* Instagram username link in the overlay panel */
body #overlay-profile-username {
    color: #1a1a1a !important;
}

/* "Powered by Candid" attribution link and its italic label */
body a.by-logo-text,
body a.by-logo-text em {
    color: #1a1a1a !important;
}

/* Keyboard shortcut hints bar */
body .candid-shortcuts,
body .candid-shortcuts span {
    color: #1a1a1a !important;
}
