#game-history {
  position: absolute;
  top: 22px;
  right: calc(50% + var(--card-width) * 4 + 360px);
  height: calc(var(--card-height) * 3 + 20px);
  width: 80px;
  box-sizing: border-box;
  background-color: #ffffff33;
  outline: 3px solid black;
  border-radius: 4px;
  overflow-y: hidden;
}
.game-history-row {
  width: calc(100% - 6px);
  height: 40px;
  box-sizing: border-box;
  padding: 4px;
  margin: 3px;
  margin-bottom: 0;
  display: flex;
  gap: 11px;
  transform-origin: 50% 0;
  transform: scale(0);
}
.game-history-row-divider {
  height: 8px !important;
  border-radius: 4px;
  width: 50%;
  margin: 12px auto !important;
}
.game-history-block,
.game-history-icon {
  height: 28px;
  width: 28px;
  background-repeat: no-repeat;
  background-position: 50%;
}
.game-history-block {
  background-size: contain;
  box-sizing: border-box;
  outline: 3px solid black;
  border-radius: 4px;
  cursor: pointer;
}
.game-history-block:hover {
  filter: brightness(105%);
}
.game-history-icon {
  position: absolute;
  z-index: 10003;
  left: 24px;
  background-size: 60%;
  background-color: #00000088;
  border-radius: 50%;
}
