#chartPlayerGames {
  background-color: #fff;
  max-width: 900px;
  height: 400px;
}
#chartPlayerGames .bar {
  fill: steelblue;
}
#chartPlayerGames .bar:hover {
  fill: brown;
}
#chartPlayerGames .barLabel {
  text-anchor: end;
  dominant-baseline: text-before-edge;
  font: 10px sans-serif;
  fill: #fff;
}
#chartPlayerGames .axis {
  font: 10px sans-serif;
}
#chartPlayerGames .axis path, #chartPlayerGames .axis line {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
}
#chartPlayerGames .x.axis path {
  display: none;
}

#chartPlayerScores {
  background-color: #fff;
  max-width: 900px;
  height: 400px;
}
#chartPlayerScores .bar {
  fill: steelblue;
}
#chartPlayerScores .bar:hover {
  fill: brown;
}
#chartPlayerScores .barLabel {
  text-anchor: end;
  dominant-baseline: text-before-edge;
  font: 10px sans-serif;
  fill: #fff;
}
#chartPlayerScores .axis {
  font: 10px sans-serif;
}
#chartPlayerScores .axis path, #chartPlayerScores .axis line {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
}
#chartPlayerScores .x.axis path {
  display: none;
}

#chartPlayerSuccessIndex {
  height: 400px;
  max-width: 900px;
  background-color: #fff;
}
#chartPlayerSuccessIndex .bar.positive {
  fill: steelblue;
}
#chartPlayerSuccessIndex .bar.negative {
  fill: brown;
}
#chartPlayerSuccessIndex .bar.neutral {
  fill: gray;
}
#chartPlayerSuccessIndex .barLabel {
  text-anchor: end;
  dominant-baseline: text-before-edge;
  font: 10px sans-serif;
  fill: #fff;
}
#chartPlayerSuccessIndex .axis {
  font: 10px sans-serif;
}
#chartPlayerSuccessIndex .axis path, #chartPlayerSuccessIndex .axis line {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
}
#chartPlayerSuccessIndex .x.axis path {
  display: none;
}

#chartPlayerWinRelations {
  height: 600px;
  max-width: 900px;
  background-color: #fff;
}
#chartPlayerWinRelations path.link {
  fill: none;
  stroke: #bbb;
  stroke-width: 4px;
  cursor: default;
}
#chartPlayerWinRelations circle.node {
  stroke-width: 1.5px;
}
#chartPlayerWinRelations text {
  font: 12px sans-serif;
  fill: #444;
  pointer-events: none;
  text-anchor: middle;
}
#chartPlayerWinRelations text.id {
  text-anchor: middle;
  font-weight: bold;
}