/* Remove the blue highlight when clicking the buttons on mobile browsers. This doesn't affect accessibility with tabbing through the webpage. */
* {
    -webkit-tap-highlight-color: transparent;
}

/* But still make it apparent when clicking the mail links. */
#mail {
    -webkit-tap-highlight-color: lightblue;
}
