/* Contrast & brand-consistency overrides — must load after golf.css */

/* Theme forces .text-muted to #999 (2.9:1 on white, fails WCAG AA); darken site-wide */
.text-muted {
	color: #5b6470 !important;
}
/* Keep muted text readable if it ever sits on a dark section */
.bg-dark .text-muted {
	color: #9aa4af !important;
}

/* Deeper success green so small bold labels (e.g. "~1 Hour") pass AA on light cards */
.text-success {
	color: #157347 !important;
}

/* Theme never restyled outline-primary, so it fell back to Bootstrap blue;
   align with the brand orange (#c57229), darkened for readable button text */
.btn-outline-primary {
	--bs-btn-color: #8f5218;
	--bs-btn-border-color: #c57229;
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: #c57229;
	--bs-btn-hover-border-color: #c57229;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #b06322;
	--bs-btn-active-border-color: #b06322;
	--bs-btn-focus-shadow-rgb: 197, 114, 41;
	color: #8f5218;
	border-color: #c57229;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
	background-color: #c57229;
	border-color: #c57229;
	color: #fff;
}
