/* GF Checkbox Limit – frontend.css */

/* Visually dim checkboxes that are disabled because the max is reached */
.gf-checkbox-limit-disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.gf-checkbox-limit-disabled input[type="checkbox"] {
	cursor: not-allowed;
	pointer-events: none;
}

/* Live counter text */
.gf-checkbox-limit-counter {
	font-size: 0.85em;
	color: #555;
	margin-top: 4px;
}

/* Counter turns red when the max is hit */
.gf-checkbox-limit-counter--full {
	color: #c0392b;
	font-weight: 600;
}
