/* Custom overrides for Bootstrap utilities using app primary color */
.text-bg-primary {
	background-color: var(--primary) !important;
	color: #ffffff !important;
}

.badge.text-bg-primary {
	background-color: var(--primary) !important;
	color: #ffffff !important;
}

/* Dashboard favorites toolbar star - no border, primary color */
.dashboard-fav-toggle {
	border: 0 !important;
	box-shadow: none !important;
	color: var(--primary) !important;
	background: transparent !important;
}
.dashboard-fav-toggle:hover,
.dashboard-fav-toggle:focus {
	color: var(--primary) !important;
	background: rgba(105,37,219,0.08) !important; /* subtle hover tint, no border */
}

/* Active star color in module cards */
.module-card button i.fa-solid.fa-star { color: var(--primary) !important; }

/* Align toolbar star to far right of the card header area */
#dashboard-card .card-title-wrap { display:flex; align-items:center; justify-content:space-between; }


