.matchday-status-placeholder {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
}

.matchday-status {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;

    border: 1px solid rgba(255, 255, 255, 0.10);
    background: #0b1222;
}

.matchday-status__head {
    min-height: 58px;
    padding: 8px 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    box-sizing: border-box;

    background: #101d31;
    border-bottom: 2px solid #f0c545;
}

.matchday-status__heading {
    min-width: 0;
}

.matchday-status__label {
    margin-bottom: 4px;

    color: #f0c545;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;

    text-transform: uppercase;
}

.matchday-status__event {
    color: #ffffff;

    font-size: 17px;
    font-weight: 800;
    line-height: 1.1;
}

.matchday-status__date {
    flex: 0 0 auto;

    color: #b9c4d3;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    white-space: nowrap;
}

.matchday-status__groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.matchday-status__group {
    min-width: 0;

    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.matchday-status__group:last-child {
    border-right: 0;
}

.matchday-status__group-title {
    height: 30px;
    padding: 0 12px;

    display: flex;
    align-items: center;

    box-sizing: border-box;

    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    color: #f0c545;

    font-size: 10px;
    font-weight: 800;
    line-height: 1;

    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.matchday-status__group-rows {
    width: 100%;
}

.matchday-status__row {
    min-height: 29px;
    padding: 0 10px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 7px;

    box-sizing: border-box;

    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.matchday-status__row:nth-child(even) {
    background: rgba(255, 255, 255, 0.014);
}

.matchday-status__row:last-child {
    border-bottom: 0;
}

.matchday-status__competition {
    min-width: 0;

    overflow: hidden;

    color: #f4f6fb;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.matchday-status__status-cell {
    min-width: 0;
}

.matchday-status__status {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    min-width: 0;

    font-size: 10px;
    font-weight: 800;
    line-height: 1;

    white-space: nowrap;
}

.matchday-status__dot {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;
}

.matchday-status__status--waiting {
    color: #f0c545;
}

.matchday-status__status--waiting .matchday-status__dot {
    background: #f0c545;
}

.matchday-status__status--available {
    color: #29d35b;
}

.matchday-status__status--available .matchday-status__dot {
    background: #29d35b;
}

.matchday-status__status--delayed {
    color: #e83c46;
}

.matchday-status__status--delayed .matchday-status__dot {
    background: #e83c46;
}

.matchday-status__status--na {
    color: #8b93a5;
}

.matchday-status__status--na .matchday-status__dot {
    background: #686f7d;
}