    .next-game-banner {
    background: #f8f9fa;
    padding: 20px;
    border-left: 6px solid #007bff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.next-game-banner h3 {
    margin-top: 0;
    font-weight: 600;
    color: #007bff;
}

.team-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 30px;
}

.team-logos img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.team-logos .vs {
    font-weight: bold;
    font-size: 18px;
    color: #555;
}

.upcoming-banner-row {
    margin-bottom: 25px;
}
.upcoming-game-banner {
    background: linear-gradient(to right, #004085, #0056b3);
    color: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.upcoming-game-banner h4 {
    font-size: 18px;
    margin: 0 0 5px;
}
.upcoming-game-banner .vs {
    color: #ffc107;
    font-weight: bold;
}
.upcoming-game-banner .badge {
    background-color: #17a2b8;
    font-size: 12px;
}
.upcoming-game-banner img {
    width: 100px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    display: block;
    margin: 10px auto;
}


