#predictions {
  /* display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  column-gap: 5px;
  row-gap: 5px; */
  margin: 0 auto;
}

#predictions .lead {
  font-size: 30px;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  color: #1c1c40;
}
#predictions .main {
  display: block;
  width: 100%;
  /* max-width: 600px; */
  /* background-color: #efefef; */
  padding: 10px;
  box-sizing: border-box;
  margin: 20px auto;
  max-width: 700px;
  display: grid;
  grid-template-columns: 150px auto;
  align-items: flex-start;
  column-gap: 2px;
  border-bottom: 0.5px solid #ccc;

}

#predictions .section {
display: block;
}

@media(max-width: 600px) {
  #predictions .section {
    display: grid;
    grid-template-columns: auto 60px;
    align-items: center;
    }
}
#predictions .section .record-container {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  position: relative;
  max-width: fit-content;
  column-gap: 2px;
  row-gap: 2px;

}

#predictions .section .record-container > * {
  height: 20px;
  widtH: 20px;
}

#predictions .section .record-container .correct {
  background-color: #d47f2f;
}

#predictions .section .record-container .wrong {
  background-color: #ccc;
}
#predictions p {
  display: block;
}

#predictions .name {
  font-weight: bold;
  font-size: 18px;
  margin: 0;
  color: #efefef;
}
#predictions .pct {
  margin: 0;
  font-family: monospace;
  margin-bottom: 8px;
  font-size: 14px;
}

#predictions  p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}