
.picks-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    animation: fadeIn 0.15s;
}
.picks-modal {
    background: #0f1419;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    width: 100%; max-width: 720px;
    max-height: 85vh;
    display: flex; flex-direction: column;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.picks-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.picks-modal-header h3 { margin: 0; font-size: 15px; font-weight: 800; color: #fff; }
.picks-modal-close {
    background: transparent; border: none; color: #94a3b8;
    font-size: 24px; cursor: pointer; padding: 0 4px;
}
.picks-modal-close:hover { color: #fff; }
.picks-modal-body { padding: 16px 20px; overflow-y: auto; }
.picks-loading, .picks-error { padding: 20px; text-align: center; color: #94a3b8; }
.picks-error { color: #fca5a5; }
.picks-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 14px;
    padding: 12px 14px;
    background: rgba(20,184,166,0.05);
    border: 1px solid rgba(20,184,166,0.18);
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 12px;
}
.picks-meta-row { display: flex; gap: 8px; align-items: baseline; }
.picks-meta-row .lbl { color: #64748b; font-size: 11px; font-weight: 600; min-width: 56px; }
.picks-meta-row .val { color: #e2e8f0; font-weight: 700; font-variant-numeric: tabular-nums; }
.picks-finish {
    padding: 8px 14px;
    background: linear-gradient(135deg, rgba(251,191,36,0.10), rgba(245,158,11,0.05));
    border: 1px solid rgba(251,191,36,0.3);
    border-radius: 8px;
    color: #fbbf24;
    font-size: 12.5px;
    text-align: center;
    margin-bottom: 12px;
}
.picks-finish b { color: #fde68a; font-size: 14px; font-variant-numeric: tabular-nums; }
.picks-table-wrap { overflow-x: auto; }
.picks-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 12.5px;
    font-variant-numeric: tabular-nums;
}
.picks-table th {
    background: rgba(255,255,255,0.04);
    color: #cbd5e1;
    font-weight: 700;
    padding: 9px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 11px;
    white-space: nowrap;
}
.picks-table td {
    padding: 9px 10px;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    white-space: nowrap;
}
.picks-table tr:hover td { background: rgba(20,184,166,0.04); }
.picks-table td.empty { text-align: center; color: #64748b; padding: 30px; }
.picks-table td.table-col { color: #94a3b8; font-weight: 600; font-size: 11.5px; }
.picks-table td.bet-col    { color: #cbd5e1; font-weight: 700; }
.picks-table td.payout-col { font-weight: 800; }
.picks-table td.bal-col    { font-weight: 700; color: #f1f5f9; }
