.team-container {
    display: flex;
    flex-direction: column; /* Vereine untereinander */
    gap: 5px;
}

.team-info-mobile {
    display: flex;
    align-items: center;
}


.team-logo-container {
    width: 50px; /* Fixe Breite des Containers für das Logo */
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-logo-mobile {
    max-height: 30px;
}

.kampf-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 2px solid #f0f0f0;
    padding-left: 10px;
    min-width: 80px; /* Feste Breite für das Ergebnis und den Button */
}

.kampf-punkte {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
}

.punktwertung-mobile {
    margin: 0 5px;
}

.ergebnis-button-mobile {
    margin-top: 5px;
}

.ergebnis-button-mobile .btn {
    font-size: 0.8rem;
    margin-top: 10px;
    color: #0067b4 !important;
    text-decoration: underline !important;
}