table {
    border-collapse: collapse;
    border: none;
    --width: 5px;
    position: relative;
    z-index: 1;
}

td {
    width: 20%;
    height: calc(100vh / 15);
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
    max-width: 200px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.semis {
    border-right: var(--width) white solid;
    border-top: var(--width) white solid;
    border-bottom: var(--width) white solid;
}

.finalsRD {
    border-right: var(--width) white solid;
    border-bottom: var(--width) white solid;
    vertical-align: bottom;
    padding-bottom: 0.5em;
}

.finalsR {
    border-right: var(--width) white solid;
}

.finalsD {
    border-bottom: var(--width) white solid;
    vertical-align: bottom;
    padding-bottom: 0.5em;
}

.finals {
    vertical-align: bottom;
    font-weight: 900;
    font-size: 1.5em;
}

.finals.smaller {
    font-size: 0.8em;
}

.short {
    height: calc(100vh / 30);
}

h3 {
    text-align: center;
    position: relative;
    z-index: 2;
}

.entrants {
    display: inline-block;
    position: relative;
    z-index: 2;
}

.hasQuals ul {
    position: relative;
    z-index: 2;
}

td ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow: auto;
}

td ul li {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
}

.hasQuals {
    display: flex;
    flex-direction: row;
    align-items: top;
    justify-content: center;
}

.qual2 h3 {
    text-align: center;
    position: relative;
    z-index: 2;
}

td:first-child {
    width: 1% !important;
    max-width: unset;
    min-width: unset;
}

.bracket {
    max-width: unset;
}

.bracketWrap {
    overflow-x: auto;
    padding-right: 20px;
}

@media(max-width: 1200px) {
    .hasQuals {
        flex-direction: column;
    }

    .hasQuals .qual1 {
        text-align: center;
    }
    
    .hasQuals ul {
        display: inline-block;
    }
}

.twoColWinners {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    position: relative;
    z-index: 1;
}

.twoColWinners .winnerImg {
    display: block;
}

.twoColWinners img {
    width: 80%;
    max-width: 700px;
    margin: 0 auto 20px auto;
    display: block;
    box-shadow: 2px 2px 10px 0 black;
}

@media (max-width: 650px) {
    .twoColWinners {
        flex-direction: column;
        align-items: center;
    }
}