/* Source: core/assets/wcag-helper.css */
.wch-a11y-toggle-btn{
	display:none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999999;
  padding: 10px 12px;
  border-radius: 8px;
  border: 2px solid currentColor;
  background: #fff;
  color: #111;
  font: inherit;
  cursor: pointer;
}
.wch-a11y-toggle-btn:focus-visible{
  outline: 3px solid #000;
  outline-offset: 3px;
}

label.nav-tab:has(input:checked) {
    background: #f0f0f1;
    position: relative;
    top: 1px;
}

/* Source: modules/ada-compliance-scanner/assets/css/wch-a11y-deeplink.css */
.ada-error {
  outline: 6px solid #d32f2f !important;
  outline-offset: 4px;
  position: relative;
}

.ada-error::after {
  content: attr(data-ada-error-label);
  position: absolute;
  top: -1.8em;
  left: 0;
  background: #d32f2f;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  z-index: 999999;
}

/* Source: modules/ada-compliance-scanner/assets/css/wch-accessible.css */
/* Everything is OFF unless .wch-a11y-on is present on html/body */
.wch-a11y-on :focus-visible {
  outline: 3px solid #000;
  outline-offset: 3px;
}

/* Make links more obvious */
.wch-a11y-on a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 0.12em;
}

/* Improve target sizing a bit (careful: can affect layout) */
.wch-a11y-on a,
.wch-a11y-on button,
.wch-a11y-on input,
.wch-a11y-on select,
.wch-a11y-on textarea {
  min-height: 44px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .wch-a11y-on * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Optional: force higher contrast for focus states */
.wch-a11y-on a:focus-visible,
.wch-a11y-on button:focus-visible,
.wch-a11y-on input:focus-visible,
.wch-a11y-on select:focus-visible,
.wch-a11y-on textarea:focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #000;
}

/* Source: modules/hello-world/assets/hello-world.css */
.wch-hello-world-message {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 99999;
	padding: 10px 14px;
	background: #222;
	color: #fff;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.4;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

body.wch-hello-world-active .wch-hello-world-message {
	transform: scale(1.03);
}

/* Source: modules/skip-link/assets/skip-link.css */
.wch-skip-actions {
    position: absolute;
    top: -250px;
    left: 20px;
    z-index: 999999;
    background: #000000;
    padding: 16px;
}

.wch-skip-actions a.skip-link {
    background: #a10000;
    color: #ffffff;
    padding: 0.75rem 1rem;
    text-decoration: none;
    font-weight: 600;
    width: 100%;
    display: inline-block;
    text-align: center;
    margin: 0 0 18px 0;
	border:2px solid #ffffff00;
	text-transform:capitalize;
}

.wch-skip-actions a.skip-link:focus {
	background: #F00;
	border:2px solid #fff;
} 
.wch-skip-actions:focus-within  {
    top: 25px;
}
 
/*
.wch-skip-actions:focus-within .wch-a11y-toggle-btn,
.wch-a11y-toggle-btn:focus,
.wch-a11y-toggle-btn:focus-visible {
	border:2px solid #fff;     
}
*/

/* Source: modules/style-toggle/assets/style-toggle.css */
.wch-a11y-toggle-btn {
    z-index: 999999;
    padding: 0.75rem 1rem;
    border: 0;
    background: #a10000;
	border:2px solid #ffffff00;
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: block;
    width: 100%;
	text-transform:capitalize;
}

.wch-a11y-toggle-btn:focus {
	background: #F00;
	border:2px solid #fff;
}
.wch-a11y-toggle-btn.wch-a11y-toggle-btn--on{
    background: #2be320;
    color: #000;
}

/* Runtime: runtime remediation CSS */
.wch-selector-remediation-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;white-space:nowrap;}
main > section.jumbotron > div.container > p.lead{color:#000000 !important;background-color:#f200ff !important;}
div.row > div.col-lg-12 > section.mt-2 > span.badge{color:#a6ff00 !important;background-color:#0600ff !important;}
div#ndic-main > div#post-250 > div.entry-content > p{color:#a10000 !important;background-color:#FFFFFF !important;}

/* Runtime: style-toggle custom CSS */
body.wch-a11y-on { background:lightgreen !important; }
