/* ---------------------------------------------------------------------------
 * GitelCare accessibility restore. Added 2026-08-29.
 *
 * WHY: this theme dequeues dt-main (The7's core stylesheet, 247 KB). That file
 * was the ONLY place on the install defining .screen-reader-text, so the skip
 * link and the back-to-top label printed as visible text on every page. This
 * restores the standard visually-hidden pattern without pulling The7's whole
 * stylesheet back in, which would collide with the Tailwind layout.
 * ------------------------------------------------------------------------- */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

/* The skip link must become visible when a keyboard user reaches it. */
.screen-reader-text:focus,
.skip-link:focus {
	background-color: #ffffff;
	clip: auto !important;
	clip-path: none;
	color: #111111;
	display: block;
	font-size: 1rem;
	height: auto;
	left: 1rem;
	line-height: normal;
	padding: 0.75rem 1.25rem;
	text-decoration: none;
	top: 1rem;
	width: auto;
	z-index: 100000;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	outline: 2px solid currentColor;
	outline-offset: 2px;
}