#minhaTabela{
  text-align: left;
  width:100%;
  margin: 0px;
  border: solid 1px;
}

#minhaTabela thead th{
  font-weight: bold;
  background-color: black;
  color:white;
  padding:5px;
}

#minhaTabela tr td{
  font-weight: bold;
  padding:5px;
  text-align: left;  
  cursor: pointer; /**importante para não mostrar cursor de texto**/
}


#minhaTabela tr td:last-child{
  font-weight: bold;
  text-align: left;
}

/**Cores**/
#minhaTabela tr:nth-child(odd){
  background-color: #555555;
  color:white;
  font-weight: bold;
}

/**Cor quando selecionado**/
#minhaTabela tr.selecionado td{
  background-color: #0080FF;
  color:white;
  font-weight: bold;
}


button#visualizarDados{
  display: block; 
  
  font-size: 28px; 
  font-weight: bold; 
  padding: 4px 10px; 
  background:#fff; 
  color:#000; 
  text-align: center;
}