 .steelers-hub-fixture {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    color: #000000;
    margin-bottom: 15px;
    border:#8e8e8e solid 1px;
}

.fixture-details {
    display: flex;
    flex-direction: column;
}

.fixture-type {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.fixture-meta {
    display: flex;
    flex-direction: column;
}

.fixture-date,
.fixture-venue {
    font-size: 17px;
}

.month-header {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top:30px;
}

.team {
    display: flex;
    align-items: center;
}

.team-logo {
    height: 70px !important;
}

.team-name {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center; /* This aligns the text vertically */
    /* Uppercase*/
    text-transform: uppercase;
}

.versus {
    margin: 20px 15px;
    font-size: 24px;
    font-weight: bold;
}

.home-bg {
    background-color: #fbe2d6 !important; /* Light orange */
}
.away-bg {
    background-color: #e5e5e5 !important; /* Keep grey for away */
}