/* Frontend CSS für die Anzeige der Ergebnisse */
.matchergbnisse-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}

.matchergbnisse-match-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px; /* Ausgewogenere Padding-Werte */
    border: 0px solid #ddd;
    border-radius: 8px;
    background-image: url(https://tsm-esports.de/wp-content/uploads/2024/12/matchbannerbg_red.png);
    background-size: cover;
    background-position: center;
    text-align: center; /* Sicherstellen, dass Text in der Mitte ist */
}

.match-date-result {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.matchergbnisse-match .team {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    justify-content: space-evenly;
    flex-direction: row;
}

.team-logo img {
    width: 60px; /* Kleinere Logo-Größe */
    height: 60px;
}

.team-name-result {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px; /* Kleinere Schriftgröße */
    font-weight: bold;
    color: #fff;
}

.vs-result {
    font-size: 20px;
    font-weight: bold;
    margin: 0 15px;
}

.team-result-result {
    color: #fff;
    padding: 5px 10px;
    background-color: #000;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
}

.team-results-Teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.team-results {
    font-size: 25px;
    font-weight: bold;
    color: #fff;
}

.colon-results-img {
    max-height: 20px;
    width: auto;
    margin-top: 5px;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
    .matchergbnisse-results {
        padding: 0 10px; /* Weniger Seiteneinstellungen */
    }

    .matchergbnisse-match-result {
        flex-direction: column; /* Stackt Elemente vertikal */
        gap: 15px;
    }

    .matchergbnisse-match .team {
        flex-direction: column; /* Vertikale Anordnung der Teams */
        align-items: center; /* Zentriert die Elemente */
        gap: 5px; /* Weniger Abstand zwischen Logo und Teamname */
    }

    .team-logo img {
        width: 50px; /* Kleinere Logo-Größe */
        height: 50px;
    }

    .team-name-result {
        font-size: 16px; /* Kleinere Schriftgröße */
        font-weight: bold;
        color: #fff;
        text-align: center; /* Teamname zentrieren */
    }

    .vs-result {
        font-size: 16px; /* Kleinere Schriftgröße */
        margin: 10px 0;
    }

    .team-results-Teams {
        flex-direction: column; /* Team-Werte untereinander anzeigen */
        gap: 10px; /* Vertikale Lücken */
    }
}
