.game-summary-view--game-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-summary-view--reaction-times-table {
  width: 100vw;
  max-width: 500px;
  margin-top: 15px;
  border-collapse: collapse;
}

.game-summary-view--header-cell {
  padding: 8px;
  border: 1px solid white;
  text-align: center;
  font-weight: bold;
}

.game-summary-view--target-cell {
  padding: 6px;
  border: 1px solid white;
  text-align: center;
  width: 20%;
}

.game-summary-view--reaction-cell {
  padding: 6px;
  border: 1px solid white;
  text-align: center;
  width: 40%;
}

.game-summary-view--winning-reaction {
  background-color: rgb(50, 205, 50, 35%);
}

.game-summary-view--average-row {
  font-weight: bold;
}

.game-summary-view--buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}