/**
 * WP Group Scheduler — explicit light mode.
 *
 * grid.css's base .wgs-survey / .wgs-frontend-wrap rule already defines
 * these exact values as the file's default (i.e. what applies before any
 * data-theme attribute is even set). This file exists so that
 * [data-theme="light"] is an explicit, intentional state rather than
 * relying on "absence of the dark override" — without it, a bug that
 * accidentally cleared the data-theme attribute would silently look
 * identical to a deliberate light-mode choice, which is fine today but
 * makes future debugging harder to reason about. Kept as a values-only
 * duplicate of grid.css's defaults rather than a set of overrides, since
 * there's nothing to override light mode FROM.
 */

.wgs-survey[data-theme='light'],
.wgs-frontend-wrap[data-theme='light'] {
	--wgs-bg: #ffffff;
	--wgs-text: #1e1e1e;
	--wgs-border: #dcdcde;
	--wgs-muted: #666666;

	--wgs-cell-unselected: #f0f0f1;
	--wgs-cell-unselected-text: #444444;
	--wgs-cell-very-likely: #1a8a3d;
	--wgs-cell-very-likely-text: #ffffff;
	--wgs-cell-potentially: #d6a625;
	--wgs-cell-potentially-text: #1e1e1e;
	--wgs-cell-not-available: #c0392b;
	--wgs-cell-not-available-text: #ffffff;

	--wgs-heat-low: #f0f0f1;
	--wgs-heat-high: #2271b1;
}
