.container {
  display: flex;
  flex-direction: column;  
  justify-content: center;
  align-items: center;
  /*height: 100vh;*/ /* Full viewport height */
}

.player-info {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.player-name {
  font-size: 24px;
  font-weight: bold;
  /*margin-top: 20px;*/
  /*margin-bottom: 10px;*/
  color: #6a6a6a;
}

.team-name {
  font-size: 16px;
  font-weight: bold;
}

.month-wrapper {
  float: left;
  margin-top: 5px;
  margin-bottom: 5px;
}

.month-header {
  font-style: italic;
  font-weight: bold;
  color: #6a6a6a;  
}

.hit-row {
  vertical-align: bottom;
}

.no-hit-row {
  vertical-align: top;
}

.gamelog-wrapper {
  padding: 0px 50px 0px 50px;
}

.gamelog {
   float: left; 
}

table.gamelog {
	border-spacing: 0px;
  /*overflow: hidden;*/
}

.gamelog td {
	padding-left: 0px;
    padding-right: 0px;
}

/* Column highlighting */
.highlight {
  background-color: #adceea;
}

.event {
  box-sizing: border-box;
  width: 10px;
  border-style: solid;
  border-width: 1px;
  margin: auto;
}

.hitting-rbi {
  box-sizing: border-box;
  width: 10px;
  border-style: solid;
  border-width: 1px;
  border-radius: 50%;
  margin: auto;
  background: #1d32f3;
  border-color: #0215c4;
  height: 10px;  
}

.lineout,
.groundout,
.forceout,
.sac-fly,
.flyout,
.airout,
.strikeout,
.pop-out,
.fielders-choice-out,
.pickoff-1b,
.pickoff-2b,
.pickoff-3b,
.pickoff-caught-stealing-2b,
.pickoff-caught-stealing-3b,
.pickoff-caught-stealing-home,
.caught-stealing-2b,
.caught-stealing-3b,
.caught-stealing-home,
.bunt-groundout,
.bunt-lineout,
.sac-bunt,
.runner-out,
.bunt-pop-out {
  background: #e52323;
  border-color: #c92020;
  height: 10px;
}

.grounded-into-dp,
.double-play,
.sac-fly-double-play,
.strikeout-double-play {
  background: #a52020;
  border-color: #911a1a;
  height: 20px;
}

.grounded-into-tp,
.triple-play {
  background: #a52020;
  border-color: #701616;
  height: 30px;
}

.single {
  background: #44c121;
  border-color: #3ca31d;
  height: 10px;
}

.double {
  background: #3e9e1e;
  border-color: #338218;
  height: 20px;
}

.triple {
  background: #33751a;
  border-color: #275914;
  height: 30px;
}

.home-run {
  background: #285b12;
  border-color: #1b3d0c;
  height: 40px;
}

.hitless {
  /*background: #e52323;*/
  border-color: #c92020;
  height: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><line x1="0" y1="0" x2="10" y2="10" stroke="red" stroke-width="1"/><line x1="0" y1="10" x2="10" y2="0" stroke="red" stroke-width="1"/></svg>');
  background-size: cover;
}

.walk,
.intent-walk,
.balk,
.fielders-choice,
.stolen-base-2b,
.stolen-base-3b,
.field-error,
.hit-by-pitch,
.catcher-interference,
.wild-pitch,
.passed-ball {
  background: silver;
  border-color: gray;
  height: 10px;
}

.spacer {
  /*background: #ffffff;*/
  border-color: transparent;
  height: 10px;
}

.game-tooltip {
  position: relative;
  display: inline-block;
  /*border-bottom: 1px dotted black;*/
}

.game-tooltip .game-tooltiptext {
  font-size: 10px;
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 110%;
  left: 50%;
  margin-left: -60px;
}

.game-tooltip .game-tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.game-tooltip:hover .game-tooltiptext {
  visibility: visible;
}

[tooltip]:before {
  /* needed - do not touch */
  content: attr(tooltip);
  position: absolute;
  opacity: 0;

  /* customizable */
  z-index: 1;
  transition: all 0.15s ease;
  padding: 5px;
  color: black;
  border-radius: 5px;
  box-shadow: 2px 2px 1px gray;
  font-size: 10px;
}

[tooltip]:hover:before {
  /* needed - do not touch */
  opacity: 1;

  /* customizable */
  z-index: 1;
  background: silver;
  margin-top: 0px;
  margin-left: 10px;
}

[tooltip]:not([tooltip-persistent]):before {
  pointer-events: none;
}