Como remover a aparência padrão do botão
/* CSS */
button {
border: none;
backgroundColor: white;
}
Plain Panda
/* CSS */
button {
border: none;
backgroundColor: white;
}
button.style.border = "none";
button.style.backgroundColor = "white";