/* Styles for inline buttons that look like links */
.inline-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font: inherit;
  color: inherit;
  text-decoration: none;
  appearance: none;
}

/* Remove the default button focus styles */
.inline-button:focus {
  outline: none;
}

/* Style for the form that wraps the button */
form.inline {
  display: inline;
  margin: 0;
  padding: 0;
}
