body {
    font-family: Arial, Helvetica, sans-serif !important;
}

.matchday {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding-bottom: 1em;
    padding-top: 1em;
    transition: background-color 0.1s ease-in;
    border-radius: 16px;
}

[data-theme=dark]
.matchday:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

[data-theme=light]
.matchday:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

[data-theme=dark]
a.matchday {
    color: white;
}

[data-theme=light]
a.matchday {
    color: black;
}

[data-theme=light]
.matchday_stage {
    color: rgba(0,0,0,0.6);
}

[data-theme=dark]
.matchday_stage {
    color: rgba(255,255,255,0.6);
}

[data-theme=light]
.matchday_place {
    color: rgba(0,0,0,0.6);
}

[data-theme=dark]
.matchday_place {
    color: rgba(255,255,255,0.6);
}

.matchday_main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0.5em;
}

.matchday_main span {
    padding-left: 1em;
    padding-right: 1em;
    font-size: 18px;
    line-height: 18px;
}

.matchday_stage span {
    font-size: 12px;
    padding-left: 1em;
    padding-right: 1em;
}

.matchday_place span {
    font-size: 12px;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.matchday_place span.fi {
    padding-left: 1em;
    padding-right: 1em;
}

.matchday_main_home {
    align-items: center;
    display: flex;
    flex: 1 0;
    justify-content: flex-end;
}

.matchday_main_time {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.matchday_main_time span {
    font-size: 30px;
    line-height: 30px;
}

.matchday_main_away {
    align-items: center;
    display: flex;
    flex: 1 0;
}