/* General styling for the XML document */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

game {
    display: block;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

title {
    display: block;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.5em;
    text-align: center;
}

home_team, away_team {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.2em;
}

doubles {
    display: block;
    margin-top: 20px;
    padding: 10px;
    border: 1px dashed #aaa;
    background-color: #eef;
}

match_1 {
    display: block;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
}

match_1 > home_team, match_1 > away_team, match_1 > defeat, match_1 > score {
    display: block;
    margin-bottom: 5px;
}

match_1 > home_team::before, match_1 > away_team::before, match_1 > defeat::before, match_1 > score::before {
    font-weight: bold;
    content: attr(name) ": ";
}

match_1 > defeat[yes] {
    color: red;
}
