.predictions-tab-recommended-bets {
    margin-bottom: 24px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.predictions-tab-recommended-bets__title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.predictions-tab-recommended-bets__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.predictions-tab-recommended-bets__item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    background: #f0fdf4;
    border: 1px solid #d1fae5;
    border-radius: 10px;
}

.predictions-tab-recommended-bets__main {
    flex: 1;
    min-width: 0;
}

.predictions-tab-recommended-bets__pick {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.predictions-tab-recommended-bets__subtitle {
    margin: 0 0 4px;
    font-size: 13px;
    color: #6b7280;
}

.predictions-tab-recommended-bets__reasoning {
    margin: 0;
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.4;
}

.predictions-tab-recommended-bets__aside {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.predictions-tab-recommended-bets__odds {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.predictions-tab-recommended-bets__confidence {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid transparent;
}

.predictions-tab-recommended-bets__confidence--high {
    background: #d1fae5;
    color: #065f46;
    border-color: #10b981;
}

.predictions-tab-recommended-bets__confidence--mid {
    background: #fef3c7;
    color: #92400e;
    border-color: #f59e0b;
}

.predictions-tab-recommended-bets__confidence--low {
    background: #f3f4f6;
    color: #4b5563;
    border-color: #d1d5db;
}

@media (max-width: 640px) {
    .predictions-tab-recommended-bets__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .predictions-tab-recommended-bets__aside {
        align-self: stretch;
        justify-content: space-between;
    }
}
