:root {
	--accent-gold: #ffb400;
	--accent-aqua: #1239ac;
}

/* Fix dark highlights to use our new Sunrise Gold and Aqua accents */
.custom-highlight-1 {
	color: var(--dark) !important;
}
.custom-highlight-1:after {
	background-color: var(--accent-gold) !important;
}

.custom-highlight-1.custom-highlight-1-primary {
	color: var(--light) !important;
}
.custom-highlight-1.custom-highlight-1-primary:after {
	background-color: var(--accent-aqua) !important;
}

/* Ensure accordion collapsed text is strictly dark, preventing any teal bleed */
.custom-accordion-style-1 > .card .card-header a.collapsed {
    color: var(--dark) !important;
}

/* Let's also style the active accordion to use the new primary blue instead of primary teal for a nice touch */
.custom-accordion-style-1 > .card .card-header a:not(.collapsed) {
	background-color: var(--accent-aqua) !important;
	color: var(--light) !important;
}

/* Prevent Text Selection and Copying */
body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}