.board-display {
    display: flex;
    flex-direction: row;
    gap: 110px;
    border: 2px solid black;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: auto;
    margin-bottom: auto;
    padding: 1%;
    border-radius: 10px;
    overflow-x: auto;

}

.board-display > * {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: initial;
}

.board-display > * > * {
    margin-top: 2%;
    margin-bottom: 2%;
    margin-left: 2%;
}

.board-display > * > *:first-child {
    margin-top: 0;
}

.board-display > * > *:last-child {
    margin-bottom: 0;
}

.round-header-0 .match-display, .round-header-0 .match-display .match-display-inner {
    height: 2px;
    visibility: hidden;
}

.round-header-1 .match-display, .round-header-1 .match-display .match-display-inner {
    height: 80px;
}

.round-header-1 .match-display {
    margin-bottom: 5px;
    margin-top: 5px;
}

.round-header-2 .match-display, .round-header-2 .match-display .match-display-inner {
    height: 135px;
}

.round-header-2 .match-display {
    margin-bottom: 8%;
    margin-top: 8%;
}

.round-header-3 .match-display, .round-header-3 .match-display .match-display-inner {
    height: 230px;
}


.board-container {
    min-height: 100vh;
}