/* Fixture rows with country flags instead of abbreviations. */
.fixture-teams--flags {
    align-items: center;
}

.fixture-team {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.fixture-team--home {
    justify-content: flex-end;
    text-align: right;
}

.fixture-team--away {
    justify-content: flex-start;
    text-align: left;
}

.fixture-flag {
    display: inline-block;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.fixture-time {
    white-space: nowrap;
}

.live-lineup-request {
    display: grid;
    gap: 4px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #edf0ef;
}

.live-lineup-request a {
    color: var(--fanat-green);
    font-weight: 900;
    font-size: 14px;
}

.live-lineup-request small {
    color: #667085;
    font-size: 12px;
    line-height: 1.35;
}

@media (max-width: 640px) {
    .fixture-team--home,
    .fixture-team--away {
        justify-content: flex-start;
        text-align: left;
    }
}
