/**
 * Football Widgets - Bookmaker Odds Styles
 * Ciemny motyw spójny z głównym style.css
 */

/* =========================================================================
   WIDGET CONTAINER
   ========================================================================= */

.fw-odds-widget {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #1a1d24;
    border-radius: 12px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 0 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* =========================================================================
   HEADER
   ========================================================================= */

.fw-odds-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background-color: #232830;
    border-bottom: 1px solid #2a2f3a;
    color: #8b8f98;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================================================
   MATCH INFO
   ========================================================================= */

.fw-odds-match {
    padding: 14px 16px;
    border-bottom: 1px solid #2a2f3a;
}

.fw-odds-match-date {
    text-align: center;
    color: #8b8f98;
    font-size: 11px;
    margin-bottom: 10px;
    font-weight: 500;
}

.fw-odds-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.fw-odds-team {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.fw-odds-team-home {
    justify-content: flex-end;
}

.fw-odds-team-away {
    justify-content: flex-start;
}

.fw-odds-team-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.fw-odds-team-name {
    color: #e4e6ea;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fw-odds-vs {
    color: #555b66;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
    padding: 0 4px;
}

/* =========================================================================
   BOOKMAKER ROW
   ========================================================================= */

.fw-odds-bookmaker {
    padding: 12px 16px;
    border-bottom: 1px solid #2a2f3a;
}

.fw-odds-bookmaker:last-child {
    border-bottom: none;
}

/* =========================================================================
   ODDS PRICES - 3 kolumny
   ========================================================================= */

.fw-odds-prices {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.fw-odds-price-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #232830;
    border: 1px solid #2a2f3a;
    border-radius: 8px;
    padding: 10px 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.fw-odds-price-box:hover {
    border-color: #FBAF08;
    background-color: #2a2f3a;
    text-decoration: none;
}

.fw-odds-price-badge {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.fw-odds-price-label {
    color: #8b8f98;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.fw-odds-price {
    color: #FBAF08;
    font-size: 16px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.fw-odds-price-box:hover .fw-odds-price {
    color: #ffc940;
}

/* =========================================================================
   BOOKMAKER INFO (logo + promo)
   ========================================================================= */

.fw-odds-bm-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.fw-odds-bm-logo-link {
    flex-shrink: 0;
}

.fw-odds-bm-logo {
    max-height: 24px;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.fw-odds-bm-logo-link:hover .fw-odds-bm-logo {
    opacity: 1;
}

.fw-odds-bm-name-link {
    color: #e4e6ea;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fw-odds-bm-name-link:hover {
    color: #FBAF08;
    text-decoration: none;
}

.fw-odds-bm-promo {
    color: #8b8f98;
    font-size: 11px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fw-odds-bm-promo:hover {
    color: #FBAF08;
    text-decoration: none;
}

/* =========================================================================
   DISCLAIMER
   ========================================================================= */

.fw-odds-disclaimer {
    color: #555b66;
    font-size: 10px;
    line-height: 1.4;
    margin-top: 4px;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 480px) {
    .fw-odds-widget {
        border-radius: 8px;
        margin: 12px 0;
    }

    .fw-odds-teams {
        gap: 8px;
    }

    .fw-odds-team-name {
        font-size: 12px;
        max-width: 100px;
    }

    .fw-odds-team-logo {
        width: 22px;
        height: 22px;
    }

    .fw-odds-prices {
        gap: 6px;
    }

    .fw-odds-price-box {
        padding: 8px 6px;
    }

    .fw-odds-price {
        font-size: 14px;
    }

    .fw-odds-price-badge {
        width: 16px;
        height: 16px;
    }

    .fw-odds-bm-info {
        flex-wrap: wrap;
        gap: 6px;
    }
}

@media (max-width: 360px) {
    .fw-odds-team-name {
        max-width: 70px;
        font-size: 11px;
    }
}
