.my-picks-container {
    max-width: 1600px;
    margin: 20px auto;
    padding: 0 20px;
}

.page-header {
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.page-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow-x: auto;
}

.filter-tab {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
}

.filter-tab:hover {
    background: #f8f9fa;
    color: var(--text-primary);
}

.filter-tab.active {
    background: var(--primary-blue);
    color: white;
}

.picks-list-container {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-height: 600px;
    width: 100%;
}

.no-picks {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.no-picks i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-picks h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.no-picks p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--hover-blue);
    transform: translateY(-2px);
}

.picks-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pick-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
}

.pick-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.pick-item.result-won {
    border-left-color: #4caf50;
}

.pick-item.result-lost {
    border-left-color: #f44336;
}

.pick-item.result-push {
    border-left-color: #ff9800;
}

.pick-item.result-pending {
    border-left-color: var(--primary-blue);
}

.pick-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.league-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-blue);
    color: white;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.badge-pending {
    background: #2196f3;
    color: white;
}

.badge-won {
    background: #4caf50;
    color: white;
}

.badge-lost {
    background: #f44336;
    color: white;
}

.badge-push {
    background: #ff9800;
    color: white;
}

.pick-game-info {
    margin-bottom: 15px;
    flex: 1;
}

.game-teams {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.score {
    display: inline-block;
    min-width: 30px;
    padding: 4px 8px;
    background: #f8f9fa;
    border-radius: 4px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

.vs {
    color: var(--text-secondary);
    font-weight: 600;
    text-align: center;
    font-size: 13px;
}

.game-time {
    font-size: 13px;
    color: var(--text-secondary);
}

.pick-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
}

.pick-type, .pick-odds {
    font-size: 14px;
    color: var(--text-primary);
}

.pick-type strong,
.pick-odds strong {
    color: var(--primary-blue);
}

.pick-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-small {
    padding: 8px 16px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    text-align: center;
}

.btn-small:hover {
    background: var(--hover-blue);
}

.pick-meta {
    font-size: 11px;
    color: var(--text-secondary);
    padding-top: 10px;
    border-top: 1px solid var(--border-gray);
    margin-top: auto;
}

/* Footer styles */
.footer-copyright {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 15px 20px;
    text-align: center;
    border-top: 1px solid #555;
    font-size: 14px;
    color: #ccc;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
    font-size: 11px;
    line-height: 1.6;
    color: #999;
}

.footer-disclaimer p {
    margin-bottom: 12px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .picks-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .picks-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .my-picks-container {
        padding: 0 15px;
    }
    
    .picks-list {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .page-header p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-value {
        font-size: 24px;
    }
}