.fbp-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 14px;
}
.fbp-title {
    font-size: 22px;
    margin-bottom: 16px;
    text-align: center;
}

/* 联赛选项卡 */
.fbp-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.fbp-tab {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}
.fbp-tab.active {
    background: #2d67c2;
    color: #fff;
    border-color: #2d67c2;
}

/* 赛事卡片 */
.fbp-item {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.fbp-head {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}
.fbp-league {
    font-weight: 600;
    color: #222;
}
.fbp-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}
.fbp-teams .team {
    font-size: 16px;
    font-weight: 500;
}
.fbp-teams .vs {
    color: #999;
    padding: 0 10px;
    font-size: 14px;
}

/* 预测结果 */
.fbp-pred {
    background: #f0f7ff;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.pred-result {
    color: #c20000;
    font-size: 16px;
}

/* 赔率模块 */
.fbp-box {
    margin-top: 12px;
}
.box-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}
.box-odds {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.box-odds span {
    background: #f6f6f6;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
}
.fbp-small-box .box-odds span {
    font-size: 13px;
    padding: 4px 8px;
}

.fbp-empty {
    padding: 20px;
    text-align: center;
    color: #999;
}

/* 移动端适配 */
@media (max-width: 576px) {
    .fbp-teams {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    .fbp-pred {
        justify-content: center;
        text-align: center;
    }
    .fbp-tabs {
        justify-content: center;
    }
}