.esports-schedule {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.esports-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 0px solid #ddd;
    border-radius: 8px;
}

.match-date, .match-time {
    font-weight: bold;
    font-size: 20px;
}

.team {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
}

.team-logo img {
    width: auto;
    height: 80px;
}

.vs img {
    width: 30px;
    height: auto;
}

.twitch-link a {
    display: flex;
    align-items: center;
    color: #ffffff;
    background: #6441a5;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
}
.twitch-link a:hover {
    color: #ffffff; /* Textfarbe ändert sich */
}

.twitch-link img {
    margin-right: 8px;
}

/* Responsives Design */
@media (max-width: 768px) {
    .esports-match {
        flex-direction: column;
        align-items: center;
    }
    .team {
        justify-content: center;
        width: 100%;
    }
    .match-date, .match-time {
        font-size: 16px;
        text-align: center;
        width: 100%;
    }
}
