/* Estilizando o botão/select */
#colorButton {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background-color: lightgray;
}

#selectColor {
    appearance: none;
    /* Remove o estilo padrão do select */
    background: transparent;
    border: none;
    font-size: 16px;
    color: inherit;
    cursor: pointer;
}
#colorSelect option {
    background: #fff; 
    color: black; 
  }