#playoff-bracket {
  display: flex;
  flex-direction: row;
}

.round {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 200px;
  list-style: none;
  padding: 0;
}
.round .spacer {
  flex-grow: 1;
}
.round .spacer:first-child, .round .spacer:last-child {
  flex-grow: 0.5;
}
.round .game-spacer {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

li.game-spacer {
  padding-left: 20px;
}

li.game.winner {
  font-weight: bold;
  font-size: 16px;
}

li.game .team {
  display: inline-block;
}
li.game .team .name {
  margin-left: 5px;
}
li.game .team .logo {
  max-width: 25px;
}
li.game .score {
  margin-left: auto;
  display: inline-block;
}
li.game.game-top, li.game.game-bottom {
  display: flex;
  font-size: 15px;
  padding: 6px;
}

li.game-top {
  border-bottom: 1px solid #aaa;
}

li.game-spacer {
  border-right: 1px solid #aaa;
  min-height: 40px;
}

li.game-bottom {
  border-top: 1px solid #aaa;
}
