/* Single Checkbox Field Styles - Structural CSS Only */

/* Styles for standalone checkbox fields (not multiple checkboxes) */

.checkbox-single {
	display: flex;
	align-items: center;

	/* Layout for checkbox label and input alignment */
}

.checkbox-single input[type="checkbox"] {
	margin-right: 8px;

	/* Spacing between checkbox and label text */
}
