﻿.tournament-container {
    display: flex;
    gap: 40px; /* Abstand zwischen den Runden */
}

.round {
    display: flex;
    flex-direction: column;
    justify-content: space-around; /* Zentriert Matches passend zur Vorrunde */
    width: 150px;
}

h3 {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.match {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 10px 0;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.player {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

    .player:last-child {
        border-bottom: none;
    }

.winner {
    background-color: #e2f3e2; /* Grün für Gewinner */
    font-weight: bold;
}
