/* Siglers Accessibility — widget UI v2.1 ----------------------------------- */

.sa11y {
	position: fixed;
	bottom: 18px;
	z-index: 100000;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.4;
}
.sa11y--left  { left: 18px; }
.sa11y--right { right: 18px; }

.sa11y__toggle {
	width: var(--sa11y-size, 52px);
	height: var(--sa11y-size, 52px);
	border: 2px solid #fff;
	border-radius: 50%;
	background: var(--sa11y-color, #1a56a8);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sa11y__toggle:hover {
	background: var(--sa11y-color-dark, #134182);
	transform: scale(1.06);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.sa11y__toggle svg { width: 52%; height: 52%; }
.sa11y__toggle:focus-visible,
.sa11y__panel button:focus-visible,
.sa11y__panel a:focus-visible,
.sa11y__panel summary:focus-visible,
.sa11y__panel input:focus-visible {
	outline: 3px solid #ffbf47;
	outline-offset: 2px;
}

.sa11y__panel {
	position: absolute;
	bottom: calc(var(--sa11y-size, 52px) + 14px);
	width: 348px;
	max-height: min(76vh, 640px);
	display: flex;
	flex-direction: column;
	background: #fdfdfd;
	color: #1a1a1a;
	border-radius: 18px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}
.sa11y--left  .sa11y__panel { left: 0; }
.sa11y--right .sa11y__panel { right: 0; }
.sa11y__panel[hidden] { display: none !important; }

/* header band */
.sa11y__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 16px;
	background: linear-gradient(135deg, var(--sa11y-color, #1a56a8), var(--sa11y-color-dark, #134182));
	color: #fff;
	flex-shrink: 0;
}
.sa11y__title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16.5px;
	font-weight: 700;
	margin: 0;
	color: #fff;
}
.sa11y__title .sa11y__ic { width: 21px; height: 21px; }
.sa11y__header-actions { display: flex; align-items: center; gap: 6px; }
.sa11y__panel .sa11y__lang,
.sa11y__panel .sa11y__close {
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.75);
	background: rgba(0, 0, 0, 0.28);
	color: #fff !important;
	border-radius: 8px;
	padding: 4px 10px;
	font-size: 12.5px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.15s ease;
	text-shadow: none;
}
.sa11y__panel .sa11y__lang:hover, .sa11y__panel .sa11y__close:hover { background: rgba(0, 0, 0, 0.5); }
.sa11y__close { font-size: 13px; padding: 4px 9px; }

/* scrollable body */
.sa11y__body { padding: 14px; overflow-y: auto; }
.sa11y__body::-webkit-scrollbar { width: 8px; }
.sa11y__body::-webkit-scrollbar-thumb { background: #c9cdd3; border-radius: 4px; }
.sa11y__body::-webkit-scrollbar-track { background: transparent; }

/* font size stepper */
.sa11y__row--font {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f1f3f6;
	border-radius: 12px;
	padding: 8px 12px;
	margin-bottom: 12px;
	font-weight: 600;
}
.sa11y__fs { display: flex; align-items: center; gap: 6px; }
.sa11y__fs button {
	width: 38px;
	height: 34px;
	border: 1px solid #d4d8de;
	border-radius: 9px;
	background: #fff;
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
	transition: border-color 0.15s ease, background 0.15s ease;
}
.sa11y__fs button:hover { border-color: var(--sa11y-color, #1a56a8); background: #f5f9ff; }
.sa11y__fs output {
	min-width: 56px;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	color: var(--sa11y-color, #1a56a8);
}

/* feature tiles */
.sa11y__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 8px;
	margin-bottom: 12px;
}
.sa11y__grid--3 { grid-template-columns: 1fr 1fr 1fr; }
.sa11y__grid--2 { grid-template-columns: 1fr 1fr; }
.sa11y__grid button {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	min-height: 74px;
	padding: 10px 4px 8px;
	border: 1.5px solid #e2e5ea;
	border-radius: 13px;
	background: #fff;
	cursor: pointer;
	font-size: 12px;
	line-height: 1.25;
	color: #333;
	text-align: center;
	transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
.sa11y__grid button:hover {
	border-color: var(--sa11y-color, #1a56a8);
	transform: translateY(-1px);
}
.sa11y__grid button .sa11y__ic {
	width: 23px;
	height: 23px;
	color: var(--sa11y-color, #1a56a8);
	flex-shrink: 0;
}
.sa11y__grid button .sa11y__lbl { display: block; }
.sa11y__grid button[aria-pressed="true"] {
	background: color-mix(in srgb, var(--sa11y-color, #1a56a8) 10%, #ffffff);
	border-color: var(--sa11y-color, #1a56a8);
	color: var(--sa11y-color-dark, #134182);
	font-weight: 700;
}
.sa11y__grid button[aria-pressed="true"]::after {
	content: '✓';
	position: absolute;
	top: -7px;
	inset-inline-end: -5px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--sa11y-color, #1a56a8);
	color: #fff;
	font-size: 11px;
	line-height: 18px;
	text-align: center;
	font-weight: 700;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.sa11y__lvl {
	position: absolute;
	top: -7px;
	inset-inline-start: -5px;
	min-width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #e17d00;
	color: #fff;
	font-size: 11px;
	line-height: 18px;
	font-weight: 700;
}
.sa11y__lvl:empty { display: none; }

/* groups */
.sa11y__group { margin-bottom: 12px; }
.sa11y__group-title {
	display: block;
	font-weight: 700;
	font-size: 11.5px;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: #7a828d;
	margin-bottom: 7px;
}
.sa11y__menuopts { margin-bottom: 10px; }
.sa11y__navinfo {
	font-size: 12.5px;
	background: color-mix(in srgb, var(--sa11y-color, #1a56a8) 8%, #ffffff);
	border: 1px solid color-mix(in srgb, var(--sa11y-color, #1a56a8) 25%, #ffffff);
	border-radius: 10px;
	padding: 9px 11px;
	margin: 0 0 12px;
}

/* color palettes */
.sa11y__colors {
	margin-bottom: 7px;
	border: 1.5px solid #e2e5ea;
	border-radius: 12px;
	background: #fff;
}
.sa11y__colors summary {
	cursor: pointer;
	padding: 9px 12px;
	font-size: 13.5px;
	font-weight: 600;
	border-radius: 12px;
}
.sa11y__colors[open] summary { border-bottom: 1px solid #eceef1; border-radius: 12px 12px 0 0; }
.sa11y__colors summary:hover { background: #f5f7fa; }
.sa11y__palette { display: flex; flex-wrap: wrap; gap: 7px; padding: 10px 12px; }
.sa11y__swatch {
	width: 27px;
	height: 27px;
	border-radius: 50%;
	border: 2px solid #b9bfc7;
	cursor: pointer;
	padding: 0;
	transition: transform 0.12s ease;
}
.sa11y__swatch:hover { transform: scale(1.15); }
.sa11y__swatch[aria-pressed="true"] {
	border: 3px solid #1a1a1a;
	box-shadow: 0 0 0 2px #fff inset;
}
.sa11y__swatch--off { background: #fff; font-size: 13px; line-height: 1; color: #666; }

/* wikipedia */
.sa11y__wiki {
	margin-bottom: 12px;
	background: #fff;
	border: 1.5px solid #e2e5ea;
	border-radius: 12px;
	padding: 11px;
}
.sa11y__wiki-label { font-weight: 700; font-size: 13px; display: block; margin-bottom: 7px; }
.sa11y__wiki-form { display: flex; gap: 6px; margin-bottom: 7px; }
.sa11y__wiki-form input {
	flex: 1;
	min-width: 0;
	padding: 8px 10px;
	border: 1px solid #d4d8de;
	border-radius: 9px;
	font-size: 14px;
}
.sa11y__wiki-form input:focus { border-color: var(--sa11y-color, #1a56a8); }
.sa11y__wiki-go {
	padding: 8px 14px;
	border: none;
	border-radius: 9px;
	background: var(--sa11y-color, #1a56a8);
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}
.sa11y__wiki-go:hover { background: var(--sa11y-color-dark, #134182); }
.sa11y__wiki-result { font-size: 13px; line-height: 1.55; max-height: 170px; overflow-y: auto; }
.sa11y__wiki-result a { color: var(--sa11y-color, #1a56a8); display: inline-block; margin-top: 5px; font-weight: 600; }

/* footer */
.sa11y__reset {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px;
	border: 1.5px solid var(--sa11y-color, #1a56a8);
	border-radius: 11px;
	background: #fff;
	color: var(--sa11y-color, #1a56a8);
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	margin-bottom: 9px;
	transition: background 0.15s ease;
}
.sa11y__reset:hover { background: color-mix(in srgb, var(--sa11y-color, #1a56a8) 8%, #ffffff); }
.sa11y__reset .sa11y__ic { width: 17px; height: 17px; }
.sa11y__statement {
	display: block;
	text-align: center;
	color: var(--sa11y-color, #1a56a8);
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.sa11y__hint { text-align: center; font-size: 11.5px; color: #8a929c; margin: 8px 0 0; }

/* credit */
.sa11y__credit {
	display: block;
	text-align: center;
	margin-top: 7px;
	padding-top: 8px;
	border-top: 1px solid #eceef1;
	font-size: 11px;
	color: #9aa1ab;
	text-decoration: none;
	letter-spacing: 0.2px;
}
.sa11y__credit:hover { color: var(--sa11y-color, #1a56a8); text-decoration: underline; }
.sa11y--contrast .sa11y__credit { color: #aab2bc; border-top-color: #333; }

/* header actions kept for legacy selector compatibility */
.sa11y__header-actions { display: flex; }

/* enlarged menu */
.sa11y--big .sa11y__panel { width: 420px; font-size: 17px; }
.sa11y--big .sa11y__grid button { font-size: 14px; min-height: 86px; }
.sa11y--big .sa11y__grid button .sa11y__ic { width: 28px; height: 28px; }
.sa11y--big .sa11y__title { font-size: 20px; }
.sa11y--big .sa11y__row--font { font-size: 17px; }

/* menu-only contrast */
.sa11y--contrast .sa11y__panel { background: #141414; color: #fff; }
.sa11y--contrast .sa11y__body { background: #141414; }
.sa11y--contrast .sa11y__row--font { background: #222; color: #fff; }
.sa11y--contrast .sa11y__fs button { background: #2b2b2b; color: #fff; border-color: #555; }
.sa11y--contrast .sa11y__fs output { color: #8ecbff; }
.sa11y--contrast .sa11y__grid button { background: #202020; border-color: #4a4a4a; color: #eee; }
.sa11y--contrast .sa11y__grid button .sa11y__ic { color: #8ecbff; }
.sa11y--contrast .sa11y__grid button[aria-pressed="true"] {
	background: #0e2c52;
	border-color: #8ecbff;
	color: #fff;
}
.sa11y--contrast .sa11y__group-title { color: #aab2bc; }
.sa11y--contrast .sa11y__colors,
.sa11y--contrast .sa11y__wiki { background: #202020; border-color: #4a4a4a; }
.sa11y--contrast .sa11y__colors summary:hover { background: #2b2b2b; }
.sa11y--contrast .sa11y__wiki-form input { background: #2b2b2b; color: #fff; border-color: #555; }
.sa11y--contrast .sa11y__reset { background: #141414; color: #8ecbff; border-color: #8ecbff; }
.sa11y--contrast .sa11y__statement { color: #8ecbff; }
.sa11y--contrast .sa11y__hint { color: #aab2bc; }
.sa11y--contrast .sa11y__navinfo { background: #202020; border-color: #4a4a4a; }

@media (max-width: 480px) {
	.sa11y__panel { width: min(340px, calc(100vw - 30px)); }
	.sa11y__grid { grid-template-columns: 1fr 1fr; }
}

/* Feature effects (classes on <html>) --------------------------------------- */

/* Text size */
html.sa11y-fs-1 { zoom: 1.1; }
html.sa11y-fs-2 { zoom: 1.22; }
html.sa11y-fs-3 { zoom: 1.35; }

/* Dark high contrast */
html.sa11y-dark body,
html.sa11y-dark body *:not(img):not(svg):not(svg *):not(video):not(iframe):not(.sa11y):not(.sa11y *) {
	background-color: #121212 !important;
	color: #ffffff !important;
	border-color: #888 !important;
	text-shadow: none !important;
	box-shadow: none !important;
}
html.sa11y-dark body a:not(.sa11y *) { color: #8ecbff !important; text-decoration: underline !important; }
html.sa11y-dark body button:not(.sa11y *), html.sa11y-dark body .btn { background-color: #2a2a2a !important; }

/* Light high contrast */
html.sa11y-light body,
html.sa11y-light body *:not(img):not(svg):not(svg *):not(video):not(iframe):not(.sa11y):not(.sa11y *) {
	background-color: #ffffff !important;
	color: #000000 !important;
	border-color: #444 !important;
	text-shadow: none !important;
	box-shadow: none !important;
}
html.sa11y-light body a:not(.sa11y *) { color: #0000cc !important; text-decoration: underline !important; }

/* Grayscale — the filter must sit on the root element: on any other element it
   creates a containing block that rips position:fixed children (incl. this widget)
   out of the viewport */
html.sa11y-gray { filter: grayscale(1); }

/* Link highlighting */
html.sa11y-links body a:not(.sa11y *) {
	text-decoration: underline !important;
	background-color: #fff353 !important;
	color: #00008a !important;
}

/* Readable font */
html.sa11y-font body,
html.sa11y-font body *:not(.sa11y):not(.sa11y *) {
	font-family: Arial, Helvetica, sans-serif !important;
}

/* Stop animations */
html.sa11y-noanim *,
html.sa11y-noanim *::before,
html.sa11y-noanim *::after {
	animation: none !important;
	transition: none !important;
}
html.sa11y-noanim { scroll-behavior: auto !important; }

/* Strong keyboard focus */
html.sa11y-focus body :focus {
	outline: 4px solid #e17d00 !important;
	outline-offset: 2px !important;
}

/* Big cursor */
html.sa11y-cursor body,
html.sa11y-cursor body * {
	cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 24 24'><path d='M5 2l14 12h-8l-2 8z' fill='black' stroke='white' stroke-width='1.6'/></svg>") 4 2, auto !important;
}

/* v2.0 additions ------------------------------------------------------------ */

/* header actions + language */
.sa11y__header-actions { display: flex; align-items: center; gap: 4px; }
.sa11y__lang {
	border: 1px solid #b5b5b5;
	background: #f4f4f4;
	border-radius: 6px;
	padding: 3px 8px;
	font-size: 12px;
	cursor: pointer;
}

/* extra font levels */
html.sa11y-fs-4 { zoom: 1.5; }
html.sa11y-fs-5 { zoom: 1.65; }

/* enlarged menu + menu contrast */
.sa11y--big .sa11y__panel { width: 380px; font-size: 18px; }
.sa11y--big .sa11y__grid button { font-size: 16px; padding: 13px 6px; }
.sa11y--big .sa11y__title { font-size: 21px; }
.sa11y--contrast .sa11y__panel { background: #111; color: #fff; border-color: #666; }
.sa11y--contrast .sa11y__title, .sa11y--contrast .sa11y__close { color: #fff; }
.sa11y--contrast .sa11y__panel .sa11y__grid button,
.sa11y--contrast .sa11y__panel .sa11y__fs button,
.sa11y--contrast .sa11y__panel .sa11y__reset,
.sa11y--contrast .sa11y__panel .sa11y__lang { background: #222; color: #fff; border-color: #777; }
.sa11y--contrast .sa11y__panel .sa11y__grid button[aria-pressed="true"] { background: var(--sa11y-color, #1a56a8); }
.sa11y--contrast .sa11y__statement { color: #8ecbff; }

/* groups */
.sa11y__group { margin-bottom: 10px; }
.sa11y__group-title { display: block; font-weight: 700; font-size: 13px; margin-bottom: 6px; color: inherit; }
.sa11y__grid--3 { grid-template-columns: 1fr 1fr 1fr; }
.sa11y__grid--2 { grid-template-columns: 1fr 1fr; }
.sa11y__lvl { font-weight: 700; }
.sa11y__menuopts { margin-bottom: 8px; }
.sa11y__hint { text-align: center; font-size: 12px; color: #666; margin: 8px 0 0; }
.sa11y--contrast .sa11y__hint { color: #bbb; }
.sa11y__navinfo { font-size: 12.5px; background: #f0f6ff; border-radius: 8px; padding: 8px; margin: 0 0 10px; }

/* color palettes */
.sa11y__colors { margin-bottom: 6px; }
.sa11y__colors summary { cursor: pointer; padding: 6px 4px; font-size: 14px; }
.sa11y__palette { display: flex; flex-wrap: wrap; gap: 6px; padding: 6px 2px; }
.sa11y__swatch {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 2px solid #999;
	cursor: pointer;
	padding: 0;
}
.sa11y__swatch[aria-pressed="true"] { border: 3px solid #1a1a1a; box-shadow: 0 0 0 2px #fff inset; }
.sa11y__swatch--off { background: #fff; font-size: 13px; line-height: 1; }

/* wikipedia */
.sa11y__wiki { margin-bottom: 10px; background: #f7f7f7; border-radius: 8px; padding: 8px; }
.sa11y--contrast .sa11y__wiki { background: #222; }
.sa11y__wiki-label { font-weight: 700; font-size: 13px; display: block; margin-bottom: 6px; }
.sa11y__wiki-form { display: flex; gap: 6px; margin-bottom: 6px; }
.sa11y__wiki-form input { flex: 1; padding: 7px; border: 1px solid #b5b5b5; border-radius: 6px; font-size: 14px; }
.sa11y__wiki-go { padding: 7px 12px; border: 1px solid #b5b5b5; border-radius: 6px; background: #f4f4f4; cursor: pointer; }
.sa11y__wiki-result { font-size: 13px; max-height: 160px; overflow-y: auto; }
.sa11y__wiki-result a { color: #1a56a8; display: inline-block; margin-top: 4px; }

/* text alignment */
html.sa11y-alignr body *:not(#sa11y):not(#sa11y *):not(.sa11y-vkb *) { text-align: right !important; }
html.sa11y-alignl body *:not(#sa11y):not(#sa11y *):not(.sa11y-vkb *) { text-align: left !important; }

/* spacing levels */
html.sa11y-spletter-1 body *:not(#sa11y):not(#sa11y *) { letter-spacing: 1px !important; }
html.sa11y-spletter-2 body *:not(#sa11y):not(#sa11y *) { letter-spacing: 2px !important; }
html.sa11y-spletter-3 body *:not(#sa11y):not(#sa11y *) { letter-spacing: 3.5px !important; }
html.sa11y-spword-1 body *:not(#sa11y):not(#sa11y *) { word-spacing: 4px !important; }
html.sa11y-spword-2 body *:not(#sa11y):not(#sa11y *) { word-spacing: 8px !important; }
html.sa11y-spword-3 body *:not(#sa11y):not(#sa11y *) { word-spacing: 14px !important; }
html.sa11y-spline-1 body *:not(#sa11y):not(#sa11y *) { line-height: 1.8 !important; }
html.sa11y-spline-2 body *:not(#sa11y):not(#sa11y *) { line-height: 2.2 !important; }
html.sa11y-spline-3 body *:not(#sa11y):not(#sa11y *) { line-height: 2.7 !important; }

/* reading mask */
.sa11y-maskpane {
	position: fixed;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.62);
	z-index: 99990;
	pointer-events: none;
}
.sa11y-maskpane--top { top: 0; }
.sa11y-maskpane--bottom { bottom: 0; }

/* magnifier bar */
.sa11y-magbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99995;
	background: #111;
	color: #fff;
	font-size: 30px;
	line-height: 1.4;
	padding: 12px 20px;
	min-height: 30px;
	max-height: 28vh;
	overflow: hidden;
	font-family: Arial, sans-serif;
	direction: rtl;
	text-align: center;
}

/* letter-nav flash */
.sa11y-nav-flash { outline: 4px solid #e17d00 !important; outline-offset: 3px !important; }

/* virtual keyboard */
.sa11y-vkb {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99999;
	background: #1f1f1f;
	border-radius: 12px 12px 0 0;
	padding: 10px;
	box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.4);
}
.sa11y-vkb__row { display: flex; justify-content: center; gap: 5px; margin-bottom: 5px; }
.sa11y-vkb__row button {
	min-width: 42px;
	height: 42px;
	border: none;
	border-radius: 7px;
	background: #3b3b3b;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
}
.sa11y-vkb__row button:hover { background: #555; }

/* accessible print */
@media print {
	html.sa11y-printmode body { background: #fff !important; }
	html.sa11y-printmode body * {
		background: #fff !important;
		color: #000 !important;
		text-shadow: none !important;
		box-shadow: none !important;
	}
	html.sa11y-printmode #sa11y,
	html.sa11y-printmode .sa11y-vkb,
	html.sa11y-printmode .sa11y-maskpane,
	html.sa11y-printmode .sa11y-magbar { display: none !important; }
}

/* Audit panel --------------------------------------------------------------- */

#sa11y-audit {
	position: fixed;
	top: 50px;
	inset-inline-end: 16px;
	z-index: 100001;
	width: 360px;
	max-height: 80vh;
	display: flex;
	flex-direction: column;
	background: #fff;
	color: #1a1a1a;
	border-radius: 14px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 14px;
	overflow: hidden;
}
.sa11y-audit__head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	background: #1d2327;
	color: #fff;
}
.sa11y-audit__head strong { font-size: 15px; }
.sa11y-audit__head span { font-size: 12.5px; opacity: 0.85; flex: 1; }
.sa11y-audit__close {
	border: none;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border-radius: 7px;
	padding: 3px 9px;
	cursor: pointer;
}
.sa11y-audit__list { overflow-y: auto; padding: 10px 14px; flex: 1; }
.sa11y-audit__list details { margin-bottom: 6px; border: 1px solid #e3e5e9; border-radius: 10px; }
.sa11y-audit__list summary { cursor: pointer; padding: 8px 11px; font-weight: 600; font-size: 13.5px; }
.sa11y-audit__item { padding: 7px 11px; border-top: 1px dashed #e3e5e9; cursor: pointer; }
.sa11y-audit__item:hover { background: #f5f7fa; }
.sa11y-audit__item code {
	display: block;
	direction: ltr;
	text-align: left;
	font-size: 11.5px;
	color: #0d47a1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.sa11y-audit__item p { margin: 3px 0 0; font-size: 12.5px; color: #444; }
.sa11y-audit__clean { text-align: center; padding: 18px 0; font-size: 15px; }
.sa11y-audit__foot { display: flex; gap: 8px; padding: 10px 14px; border-top: 1px solid #e3e5e9; }
.sa11y-audit__foot button {
	flex: 1;
	padding: 8px;
	border: 1px solid #1d2327;
	border-radius: 9px;
	background: #fff;
	cursor: pointer;
	font-weight: 600;
	font-size: 13px;
}
.sa11y-audit__foot button:hover { background: #f0f0f1; }
