#hof-tables {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}

.hof-ranks {
    width: 60px;
}

.hof-cards, .hof-outfits {
    width: 90px;
}

.table-container table {
    border-spacing: 0;
    border: 1px solid rgba(0,0,0,0.4);
    border-radius: 12px;
    position: relative;
    z-index: 1;
    table-layout: fixed;
    width: 400px
}

@media only screen and (max-width: 420px) {
    .table-container table {
        border-spacing: 0;
        border: 1px solid rgba(0,0,0,0.4);
        border-radius: 12px;
        position: relative;
        z-index: 1;
        table-layout: fixed;
        width: 100%;
        font-size: 14px;
    }
    .hof-cards, .hof-outfits {
        width: 70px;
    }
}

.table-container th, td {
    text-align: center;
    line-height: 40px;
    white-space: pre-line;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
}
.table-container tr:first-of-type {
    color: white;
    background-color: #555;
}
.table-container td:first-child {
    font-weight: bold;
    width: 40px;
}
.table-container tr:nth-child(odd):not(:first-of-type) {
    background-color: #f7f7f7;
}
.table-container tr:nth-child(even) {
    background-color: #dee6eb;
}
.table-container tr:first-of-type td:first-of-type, tr:first-of-type th:first-of-type {
    border-top-left-radius: 10px;
}
.table-container tr:first-of-type td:last-of-type, tr:first-of-type th:last-of-type {
    border-top-right-radius: 10px;
}
.table-container tr:last-of-type td:first-of-type {
    border-bottom-left-radius: 10px;
}
.table-container tr:last-of-type td:last-of-type {
    border-bottom-right-radius: 10px;
}

.table-container {
  position: relative;
  margin-top: 300px;
}

.table-container h2, .table-container select{
  position: absolute;
  top: -300px;
  z-index: 2;
}

.table-container select{
  position: absolute;
  top: -278px;
  right: 0;
  z-index: 2;
  font-size: 1.2em;
}

.podium {
    position: absolute;
    width: 300px;
    height: 400px;
    background-size: 300px 300px;
    background-position: bottom;
    background-repeat: no-repeat;
    top: 0;
    left: 50%;
    transform: translate(-50%, -80%);
    user-select: none;
    overflow: hidden;
}
.p1, .p2, .p3 {
  position: absolute;
  width: 250px;
  height: 250px;
  top: 0%;
  user-select: none;
}
.p1 {
  left: 50%;
  transform: translate(-50%, -21%);
}
.p2 {
  left: -20%;
  top: -2%;
}
.p3 {
  left: 37%;
  top: 2%;
}