body {
  user-select: none;
}

.controlPanel {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  padding: 0.5em;
  gap: 0.5em 0.25em;
  align-items: center;
  justify-content: left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9em;
  border-radius: 0.75em;
  background-color: silver;
  z-index: 9999;
}

.controlPanel .button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1em;
  width: 2.5em;
  height: 2em;
  border: 0;
  border-radius: 0.75em;
  margin: 0;
  padding: 0;
  color: white;
  background-color: dodgerblue;
}

.controlPanel .button:active {
  transform: scale(0.95);
  filter: brightness(95%); 
}

.controlPanel .playButton {
  background-color: green;
}

.controlPanel .text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  width: 3ch;
  height: 2em;
  border: 0;
  border-radius: 0.75em;
  margin: 0;
  padding: 0 1em;
}

.controlPanel .label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1em;
  color: black;
}

.scoreCanvas {
  margin-top: 2em;
}

a {
  color: blue;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}