.fixture-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.fixture-item .team {
    display: flex;
    align-items: center;
    width: 35%;
}

.fixture-item .team:last-child {
    justify-content: flex-end;
    text-align: right;
}

.fixture-item .team-logo {
    width: 30px;
    height: 30px;
    margin: 0 5px;
}

.fixture-item .team:first-child .team-logo {
    order: -1;
}

.fixture-item .team-name {
    font-weight: bold;
}

.fixture-item .fixture-score,
.fixture-item .fixture-time {
    font-weight: bold;
    font-size: 1.2em;
    width: 20%;
    text-align: center;
}

.fixture-item .fixture-venue {
    font-size: 0.8em;
    color: #555;
    width: 100%;
    text-align: center;
    margin-top: 5px;
}
