#tournament-wrapper {
    position: relative;
    overflow-x: auto;
}

#tournament-bracket {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.bracket {
    position: relative;
    display: flex;
    gap: 80px;
}

.round {
    position: relative;
    min-width: 260px;
}

.match {
    position: absolute;
    width: 240px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    min-height: 40px;
}

.team-info img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.team-info span {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
