/* Banner Image */
/* Desktop Style */
.preview-banner {
    width: 1200px;
    height: 200px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* Mobile Override */
@media (max-width: 800px) {
    .preview-banner {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}



/* Main Header Layout: 3-column grid */
.preview-header-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    align-items: center;
}

/* Matchup Info Box (left column) */
.matchup-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.matchup-header .logos {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 36px;
    font-weight: bold;
    white-space: nowrap;
}

.matchup-header .vs-text {
    white-space: nowrap;
}

.matchup-header .game-date {
    font-size: 24px;
	font-weight: bold;
    color: #888;
    margin-top: 6px;
}

.team-logo {
    height: 60px;
    width: 60px;
}

/* Odds Container Columns */
.odds-board {
    border-radius: 10px;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

/* FanDuel: Blue */
.fanduel-odds-board {
    background-color: #003366;
    color: #ffffff;
}

/* DraftKings: Dark */
.draftkings-odds-board {
    background-color: #1e1e1e;
    color: #ffffff;
}

/* Odds Grid Layout */
.odds-header,
.odds-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.odds-header {
    background-color: rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ddd;
}

.odds-row:last-child {
    border-bottom: none;
}

.odds-row:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.04);
}

/* Label Row */
.source-label {
    grid-column: span 4;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    color: #1abc9c;
    padding: 8px 16px;
}

/* Odds Cells */
.odds-team {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #ffffff;
}

.odds-cell {
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    font-size: 16px;
}

.odds-val {
    display: block;
    font-size: 18px;
    color: #39FF14;
    font-weight: bold;
    margin-top: 2px;
}

.odds-spread {
    display: block;
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
    margin-top: 2px;
}

.odds-time {
    color: #74b9ff;
    font-size: 12px;
    font-weight: 500;
}

.odds-label {
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #bdc3c7;
}

.odds-columns-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    align-items: start;
}


/* Mobile Responsive */
@media (max-width: 800px) {
    .odds-columns-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .matchup-header {
        margin-bottom: 20px;
    }

    .odds-board {
        width: 100%;
    }
}

.matchup-header .team-logo {
    height: 80px;  /* previously 60px – increase to make logos bigger */
    width: 80px;
}

