

/* Apply cursor pointer to button elements */
button,
[type="button"] {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
  cursor: pointer;
}
/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type="button"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

