
.jogos .grid-results {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.jogos .result {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  line-height: 1;
  margin-right: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.jogos .result:not(.white)::after {
  content: " ";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  border: 2px solid #fff;
}

.jogos .result.red {
  background-color: #FF0000;
}

.jogos .result.black {
  background-color: #4E4E4E;
}

.jogos .result.white {
  background-color: #FFF;
  color: #4E4E4E;
}

.jogos .result.white::after {
  border-color: #4E4E4E;
}

.jogos .result.big {
  width: 150px;
  height: 150px;
  font-size: 35px;
}

/* .card-relatorio .card-body {
  max-height: 80vh;
  overflow: auto;
} */

.relatorio { 
  overflow-x: auto;
  max-height: 80vh;
}

.relatorio .linha {
  display: flex;
  align-items: center;
  border: 1px solid #5b5b5b;
  border-right: 0;
  border-top: 0;
  min-width: 100%;
  width: fit-content;
}

.relatorio .linha:last-child {
  border-bottom: 1px solid #5b5b5b;
}

.relatorio .linha .time {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  margin-right: 20px;
  border-right: 1px solid #5b5b5b;
  padding: 10px;
  color: #fff;
  position: sticky;
  left: 0;
  z-index: 9999;
  background-color: #212121;
  width: 70px;
}

.relatorio .linha .time span {
  white-space: nowrap;
}

.relatorio .linha .plataformas {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  padding: 10px 0;
}

.relatorio .linha .plataformas span {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  border-radius: 5px;
  color: #fff;
  font-weight: 900;
}

.relatorio .linha .plataformas span:not(:last-child) {
  margin-bottom: 10px;
}

.relatorio .linha .plataformas span.blaze {
  background: #e82a37;
}

.relatorio .linha .plataformas span.smash {
  background: #673ab7;
}

.relatorio .linha .jogos {
  display: flex;
  padding-left: 6px;
  padding-right: 10px;
}

.relatorio .linha .jogos:not(:last-child) {
  margin-bottom: 10px;
}

.relatorio .linha .jogos .result {
  margin-bottom: 15px;
  margin-right: 5px;
}

.relatorio .linha .jogos .result:nth-child(2n):not(:last-child) {
  margin-right: 20px;
}

.relatorio .linha .jogos .result span {
  position: absolute;
  bottom: -15px;
  font-size: 11px;
  color: #fff;
}

.relatorio .results .data {
  width: 100%;
  background: var(--bs-dark);
  color: #fff;
  font-weight: 900;
  padding-left: 15px;
  text-align: center;
  z-index: 999;
  position: relative;
}

.relatorio .head {
  margin-left: 90px;
  display: flex;
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 10px 0;
}

.relatorio .head .coluna {
  min-width: 120px;
  width: 120px;
  height: 50px;
  background-color: var(--bs-dark);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  margin-right: 5px;
  border-radius: 8px;
  position: relative;
  z-index: 9999;
}


.relatorio .head .coluna:not(:first-child)::before {
  content: " ";
  height: 1000vh;
  width: 0.5px;
  background-color: #959595;
  left: -3px;
  position: absolute;
  top: 55px;
}